Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/14/11 17:08:32 (12 years ago)
Author:
sforsten
Message:

#1669: First version with a simpler design as discussed with Michael Kommenda has been implemented and will be tested soon. Currently only the KotanchekFunction.cs is changed accordingly. Other benchmarks are going to follow soon.

The classes for the different distributions are not needed any longer. Static methods in RegressionBenchmark replace them.

File:
1 edited

Legend:

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

    r6968 r6991  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Data;
    2827
    2928namespace HeuristicLab.Problems.DataAnalysis.Benchmarks {
     
    3332    public RippleFunction() {
    3433      Name = "Ripple function (2d)";
    35       TargetVariable = "y";
    36       Inputvariables = new Dictionary<string, IntRange>() {
    37         {"x1", new IntRange(0, 6)},
    38         {"x2", new IntRange(0, 6)}
    39       };
    40       AmountOfPoints = 4000;
    41       TrainingPartition = new IntRange(0, 2667);
    42       TestPartition = new IntRange(TrainingPartition.End, AmountOfPoints);
     34      //TargetVariable = "y";
     35      //Inputvariables = new Dictionary<string, IntRange>() {
     36      //  {"x1", new IntRange(0, 6)},
     37      //  {"x2", new IntRange(0, 6)}
     38      //};
     39      //AmountOfPoints = 4000;
     40      //TrainingPartition = new IntRange(0, 2667);
     41      //TestPartition = new IntRange(TrainingPartition.End, AmountOfPoints);
    4342    }
    4443
Note: See TracChangeset for help on using the changeset viewer.