Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/29/11 14:58:06 (12 years ago)
Author:
sforsten
Message:

#1669: Input variables of Korn functions have been adjusted according to the description.

File:
1 edited

Legend:

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

    r7044 r7095  
    3939        + "We test each of the test cases on matrices of 10000 rows by 1 to 5 columns with no noise. "
    4040        + "For each test a training matrix is filled with random numbers between -50 and +50. The test case "
    41         + "target expressions are limited to one basis function whose maximum depth is three grammar nodes.\"";
     41        + "target expressions are limited to one basis function whose maximum depth is three grammar nodes.\"" + Environment.NewLine + Environment.NewLine
     42        + "Note: Because of the square root only non-negatic values are created for the input variables!";
    4243      targetVariable = "Y";
    43       inputVariables = new List<string>() { "X0" };
     44      inputVariables = new List<string>() { "X0", "X1", "X2", "X3", "X4" };
    4445      trainingPartition = new IntRange(0, 5000);
    4546      testPartition = new IntRange(5001, 10000);
     
    5859    protected override List<List<double>> GenerateInput() {
    5960      List<List<double>> dataList = new List<List<double>>();
    60       DoubleRange range = new DoubleRange(-50, 50);
     61      DoubleRange range = new DoubleRange(0, 50);
    6162      for (int i = 0; i < inputVariables.Count; i++) {
    6263        dataList.Add(RegressionBenchmark.GenerateUniformDistributedValues(testPartition.End, range));
Note: See TracChangeset for help on using the changeset viewer.