Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/12/12 13:51:49 (12 years ago)
Author:
sforsten
Message:

#1979:

  • renamed Keijzer 1-3
  • corrected training and test partition of Keijzer 9 and 10
  • changed interval for some variables in Korn 7, 9, 15 to avoid infinity and NaN values
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Korns/KornsFunctionNine.cs

    r8825 r8900  
    4040        + "For each test a training matrix is filled with random numbers between -50 and +50. The test case "
    4141        + "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 and the logarithm only non-negatic values are created for the input variables!";
     42        + "Note: Because of the square root and the logarithm only non-negatic values are created for their input variables!" + Environment.NewLine
     43        + "Because of the exponential function only only non-positive values are created for its input variable!";
    4344      }
    4445    }
     
    5556      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 50).ToList()); // note: range is only [0,50] to prevent NaN values (deviates from gp benchmark paper)
    5657      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 50).ToList()); // note: range is only [0,50] to prevent NaN values (deviates from gp benchmark paper)
    57       data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 50).ToList());
    58       data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 50).ToList()); 
    59       data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 50).ToList()); 
     58      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 0).ToList()); // note: range is only [-50,0] to prevent NaN values (deviates from gp benchmark paper)
     59      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 50).ToList());
     60      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, -50, 50).ToList());
    6061
    6162      double x0, x1, x2, x3;
Note: See TracChangeset for help on using the changeset viewer.