Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/11 17:33:23 (12 years ago)
Author:
sforsten
Message:

#1669:
-Iris benchmark has been corrected and data set will ordered randomly
-Benchmarks of Trent McConaghy have been corrected
-Descriptions have been added (Mammography and Iris)
-Bug fix in ClassificationRealWorldBenchmark

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Benchmarks/3.4/RegressionBenchmarks/Trent McConaghy/HighOpampSR.cs

    r7127 r7138  
    3737        + "Authors: T. McConaghy" + Environment.NewLine
    3838        + "Website: http://trent.st/ffx/";
     39
     40      trainingPartition = new IntRange(0, 600);
    3941    }
    4042
     
    4446      targetVariable = csvFileParser.VariableNames.First();
    4547      inputVariables = new List<string>(csvFileParser.VariableNames.Skip(1));
    46       int trainingPartEnd = csvFileParser.Rows * 2 / 3;
    47       trainingPartition = new IntRange(0, trainingPartEnd);
    48       testPartition = new IntRange(trainingPartEnd, csvFileParser.Rows);
     48
     49      testPartition = new IntRange(trainingPartition.End, csvFileParser.Rows);
    4950
    5051      return csvFileParser.Values;
Note: See TracChangeset for help on using the changeset viewer.