Changeset 8900 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer
- Timestamp:
- 11/12/12 13:51:49 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionNine.cs
r8825 r8900 42 42 protected override string[] AllowedInputVariables { get { return new string[] { "X" }; } } 43 43 protected override int TrainingPartitionStart { get { return 0; } } 44 protected override int TrainingPartitionEnd { get { return 10 0; } }45 protected override int TestPartitionStart { get { return 10 0; } }46 protected override int TestPartitionEnd { get { return 110 0; } }44 protected override int TrainingPartitionEnd { get { return 101; } } 45 protected override int TestPartitionStart { get { return 101; } } 46 protected override int TestPartitionEnd { get { return 1102; } } 47 47 48 48 protected override List<List<double>> GenerateValues() { … … 55 55 for (int i = 0; i < data[0].Count; i++) { 56 56 x = data[0][i]; 57 results.Add(Math.Log(x + Math.Sqrt(x *x + 1)));57 results.Add(Math.Log(x + Math.Sqrt(x * x + 1))); 58 58 } 59 59 data.Add(results); -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionOne.cs
r8825 r8900 27 27 public class KeijzerFunctionOne : ArtificialRegressionDataDescriptor { 28 28 29 public override string Name { get { return "Keijzer 1 f(x) = 0.3 * x *sin(2 * PI * x) "; } }29 public override string Name { get { return "Keijzer 1 f(x) = 0.3 * x *sin(2 * PI * x); Interval [-1, 1]"; } } 30 30 public override string Description { 31 31 get { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionTen.cs
r8825 r8900 44 44 protected override int TrainingPartitionEnd { get { return 100; } } 45 45 protected override int TestPartitionStart { get { return 100; } } 46 protected override int TestPartitionEnd { get { return 10 100; } }46 protected override int TestPartitionEnd { get { return 10301; } } 47 47 48 48 protected override List<List<double>> GenerateValues() { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionThree.cs
r8825 r8900 27 27 public class KeijzerFunctionThree : ArtificialRegressionDataDescriptor { 28 28 29 public override string Name { get { return "Keijzer 3 f(x) = 0.3 * x *sin(2 * PI * x) "; } }29 public override string Name { get { return "Keijzer 3 f(x) = 0.3 * x *sin(2 * PI * x); Interval [-3, 3]"; } } 30 30 public override string Description { 31 31 get { -
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionTwo.cs
r8825 r8900 27 27 public class KeijzerFunctionTwo : ArtificialRegressionDataDescriptor { 28 28 29 public override string Name { get { return "Keijzer 2 f(x) = 0.3 * x *sin(2 * PI * x) "; } }29 public override string Name { get { return "Keijzer 2 f(x) = 0.3 * x *sin(2 * PI * x); Interval [-2, 2]"; } } 30 30 public override string Description { 31 31 get {
Note: See TracChangeset
for help on using the changeset viewer.