Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Problems.DynamicalSystemsModelling/3.3/Instances/DataDescriptor.cs @ 16970

Last change on this file since 16970 was 16954, checked in by gkronber, 5 years ago

#2925: Add problem instance provider and instances. Use penalized regression splines for calculation of numeric differences (for pre-tuning).

File size: 651 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Data;
3using HeuristicLab.Problems.Instances;
4
5namespace HeuristicLab.Problems.DynamicalSystemsModelling.Instances {
6  public class DataDescriptor : IDataDescriptor {
7    public string Name { get; internal set; }
8    public string Description { get; internal set; }
9    public string[] TargetVariables { get; internal set; }
10    public string[] InputVariables { get; internal set; }
11    public IEnumerable<IntRange> TrainingEpisodes { get; internal set; }
12    public IEnumerable<IntRange> TestEpisodes { get; internal set; }
13    public string FileName { get; internal set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.