Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/12 14:13:39 (11 years ago)
Author:
gkronber
Message:

#1979: cross-checked all regression problem instances with the GP benchmarks paper and adapted where I thought necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionEleven.cs

    r8825 r9007  
    3636          + "range(train): 20 Training cases x,y = rnd(-3, 3)" + Environment.NewLine
    3737          + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine
    38           + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine
    39           + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the interval [-3, 3] (not ca. 360000 as described) "
    40           + ", but 5000 cases are created";
     38          + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)";
    4139      }
    4240    }
     
    4644    protected override int TrainingPartitionStart { get { return 0; } }
    4745    protected override int TrainingPartitionEnd { get { return 20; } }
    48     protected override int TestPartitionStart { get { return 2500; } }
    49     protected override int TestPartitionEnd { get { return 2600; } }
     46    protected override int TestPartitionStart { get { return 20; } }
     47    protected override int TestPartitionEnd { get { return 20 + (601 * 601); } }
    5048
    5149    protected override List<List<double>> GenerateValues() {
    5250      List<List<double>> data = new List<List<double>>();
     51      List<double> oneVariableTestData = ValueGenerator.GenerateSteps(-3, 3, 0.01).ToList();
     52      List<List<double>> testData = new List<List<double>>() { oneVariableTestData, oneVariableTestData };
     53
     54      var combinations = ValueGenerator.GenerateAllCombinationsOfValuesInLists(testData).ToList();
     55
    5356      for (int i = 0; i < AllowedInputVariables.Count(); i++) {
    54         data.Add(ValueGenerator.GenerateUniformDistributedValues(5020, -3, 3).ToList());
     57        data.Add(ValueGenerator.GenerateUniformDistributedValues(20, -3, 3).ToList());
     58        data[i].AddRange(combinations[i]);
    5559      }
    5660
Note: See TracChangeset for help on using the changeset viewer.