Last change
on this file since 16967 was
16954,
checked in by gkronber, 6 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 | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HeuristicLab.Data;
|
---|
3 | using HeuristicLab.Problems.Instances;
|
---|
4 |
|
---|
5 | namespace 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.