- Timestamp:
- 01/10/12 17:32:44 (13 years ago)
- Location:
- branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Keijzer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Keijzer/KeijzerFunctionFifteen.cs
r7255 r7307 32 32 + "Authors: Maarten Keijzer" + Environment.NewLine 33 33 + "Function: f(x, y) = 8 / (2 + x^2 + y^2)" + Environment.NewLine 34 + "range(train): 20 T estcases x,y = rnd(-3, 3)" + Environment.NewLine34 + "range(train): 20 Train cases x,y = rnd(-3, 3)" + Environment.NewLine 35 35 + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)"; 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine 37 + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the intercal [-3, 3] (not ca. 360000 as described) " 38 + ", but 5000 cases are created"; 37 39 targetVariable = "F"; 38 40 inputVariables = new List<string>() { "X", "Y" }; 39 41 trainingPartition = new IntRange(0, 20); 40 testPartition = new IntRange( 500, 1101);42 testPartition = new IntRange(2500, 2601); 41 43 } 42 44 … … 61 63 62 64 for (int i = 0; i < InputVariable.Count; i++) { 63 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues( 500, range));65 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues(2500, range)); 64 66 dataList[i].AddRange(testData[i]); 65 67 } -
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Keijzer/KeijzerFunctionSixteen.cs
r7255 r7307 32 32 + "Authors: Maarten Keijzer" + Environment.NewLine 33 33 + "Function: f(x, y) = x^3 / 5 + y^3 / 2 - y - x" + Environment.NewLine 34 + "range(train): 20 T estcases x,y = rnd(-3, 3)" + Environment.NewLine34 + "range(train): 20 Training cases x,y = rnd(-3, 3)" + Environment.NewLine 35 35 + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)"; 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine 37 + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the intercal [-3, 3] (not ca. 360000 as described) " 38 + ", but 5000 cases are created"; 37 39 targetVariable = "F"; 38 40 inputVariables = new List<string>() { "X", "Y" }; 39 41 trainingPartition = new IntRange(0, 20); 40 testPartition = new IntRange( 500, 1101);42 testPartition = new IntRange(2500, 2601); 41 43 } 42 44 … … 61 63 62 64 for (int i = 0; i < InputVariable.Count; i++) { 63 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues( 500, range));65 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues(2500, range)); 64 66 dataList[i].AddRange(testData[i]); 65 67 } -
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Keijzer/KeijzerFunctionThirteen.cs
r7255 r7307 32 32 + "Authors: Maarten Keijzer" + Environment.NewLine 33 33 + "Function: f(x, y) = x^4 - x^3 + y^2 / 2 - y" + Environment.NewLine 34 + "range(train): 20 T estcases x,y = rnd(-3, 3)" + Environment.NewLine34 + "range(train): 20 Training cases x,y = rnd(-3, 3)" + Environment.NewLine 35 35 + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)"; 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine 37 + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the intercal [-3, 3] (not ca. 360000 as described) " 38 + ", but 5000 cases are created"; 37 39 targetVariable = "F"; 38 40 inputVariables = new List<string>() { "X", "Y" }; 39 41 trainingPartition = new IntRange(0, 20); 40 testPartition = new IntRange( 500, 1101);42 testPartition = new IntRange(2500, 2601); 41 43 } 42 44 … … 61 63 62 64 for (int i = 0; i < InputVariable.Count; i++) { 63 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues( 500, range));65 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues(2500, range)); 64 66 dataList[i].AddRange(testData[i]); 65 67 } -
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Keijzer/KeijzerFunctionTwelve.cs
r7255 r7307 32 32 + "Authors: Maarten Keijzer" + Environment.NewLine 33 33 + "Function: f(x, y) = xy + sin((x - 1)(y - 1))" + Environment.NewLine 34 + "range(train): 20 T estcases x,y = rnd(-3, 3)" + Environment.NewLine34 + "range(train): 20 Training cases x,y = rnd(-3, 3)" + Environment.NewLine 35 35 + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)"; 36 + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine 37 + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the intercal [-3, 3] (not ca. 360000 as described) " 38 + ", but 5000 cases are created"; 37 39 targetVariable = "F"; 38 40 inputVariables = new List<string>() { "X", "Y" }; 39 41 trainingPartition = new IntRange(0, 20); 40 testPartition = new IntRange( 500, 1101);42 testPartition = new IntRange(2500, 2601); 41 43 } 42 44 … … 61 63 62 64 for (int i = 0; i < InputVariable.Count; i++) { 63 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues( 500, range));65 dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues(2500, range)); 64 66 dataList[i].AddRange(testData[i]); 65 67 }
Note: See TracChangeset
for help on using the changeset viewer.