Changeset 17642 for branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression
- Timestamp:
- 07/01/20 11:41:41 (4 years ago)
- Location:
- branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman
- Files:
-
- 100 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanDescriptor.cs
r17640 r17642 14 14 15 15 protected override int TrainingPartitionStart { get { return 0; } } 16 protected override int TrainingPartitionEnd { get { return 100 00; } }17 protected override int TestPartitionStart { get { return 100 00; } }18 protected override int TestPartitionEnd { get { return 200 00; } }16 protected override int TrainingPartitionEnd { get { return 100; } } 17 protected override int TestPartitionStart { get { return 100; } } 18 protected override int TestPartitionEnd { get { return 200; } } 19 19 } 20 20 } -
branches/3075_aifeynman_instances/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanInstanceProvider.cs
r17641 r17642 32 32 var descriptorList = new List<IDataDescriptor>(); 33 33 var rand = new MersenneTwister((uint) Seed); 34 descriptorList.Add(new Feynman1(rand.Next() ));34 descriptorList.Add(new Feynman1(rand.Next(), 10000, 10000)); 35 35 descriptorList.Add(new Feynman2(rand.Next())); 36 36 descriptorList.Add(new Feynman3(rand.Next()));
Note: See TracChangeset
for help on using the changeset viewer.