Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/24/12 16:23:47 (12 years ago)
Author:
sforsten
Message:

#1669:

  • changed TestPartition and trainingPartition of SpatialCoevolution
  • put a method from RegressionBenchmark to BreimanOne
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Other/SpatialCoevolution.cs

    r7127 r7405  
    4040      targetVariable = "F";
    4141      inputVariables = new List<string>() { "X", "Y" };
    42       trainingPartition = new IntRange(0, 338);
    43       testPartition = new IntRange(338, 676);
     42      trainingPartition = new IntRange(0, 676);
     43      testPartition = new IntRange(676, 976);
    4444    }
    4545
     
    5858      List<List<double>> dataList = new List<List<double>>();
    5959
    60       List<double> oneVariableTestData = RegressionBenchmark.GenerateSteps(new DoubleRange(-5, 5), 0.4);
     60      DoubleRange range = new DoubleRange(-5, 5);
     61
     62      List<double> oneVariableTestData = RegressionBenchmark.GenerateSteps(range, 0.4);
    6163      List<List<double>> testData = new List<List<double>>() { oneVariableTestData, oneVariableTestData };
    62       dataList = RegressionBenchmark.GenerateAllCombinationsOfValuesInLists(testData);
     64      testData = RegressionBenchmark.GenerateAllCombinationsOfValuesInLists(testData);
     65
     66      for (int i = 0; i < inputVariables.Count; i++) {
     67        dataList.Add(testData[i]);
     68        dataList[i].AddRange(RegressionBenchmark.GenerateUniformDistributedValues(1000, range));
     69      }
    6370
    6471      return dataList;
Note: See TracChangeset for help on using the changeset viewer.