Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/05/11 17:03:49 (12 years ago)
Author:
sforsten
Message:

#1669:
-Spatial co-evolution benchmark has been added
-Benchmarks of Trent McConaghy have been added
-2 Classification benchmarks have been added (Mammography and Iris dataset)
-Training and test set include now all samples from the dataset
-Load button and combo box are now disabled when the algorithm is running

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/RealWorldProblems/TowerProblem.cs

    r7085 r7127  
    4141
    4242    protected override List<IList> GetData() {
    43       csvFileParser = RegressionRealWorldBenchmark.getParserForFile(fileName);
     43      csvFileParser = Benchmark.getParserForFile(fileName);
    4444
    4545      targetVariable = csvFileParser.VariableNames.Last();
     
    4747      int trainingPartEnd = csvFileParser.Rows * 2 / 3;
    4848      trainingPartition = new IntRange(0, trainingPartEnd);
    49       testPartition = new IntRange(trainingPartEnd + 1, csvFileParser.Rows);
     49      testPartition = new IntRange(trainingPartEnd, csvFileParser.Rows);
    5050
    5151      return csvFileParser.Values.Skip(csvFileParser.Columns - 1).Union(csvFileParser.Values.Take(csvFileParser.Columns - 1)).ToList();
Note: See TracChangeset for help on using the changeset viewer.