Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/19/12 11:16:51 (12 years ago)
Author:
abeham
Message:

#1985: Updated branch from trunk

Location:
branches/RuntimeOptimizer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/RuntimeOptimizer

  • branches/RuntimeOptimizer/HeuristicLab.Problems.Instances.DataAnalysis

  • branches/RuntimeOptimizer/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionThirteen.cs

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