Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/12 14:13:39 (12 years ago)
Author:
gkronber
Message:

#1979: cross-checked all regression problem instances with the GP benchmarks paper and adapted where I thought necessary.

File:
1 edited

Legend:

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

    r8825 r9007  
    2727  public class KornsFunctionEleven : ArtificialRegressionDataDescriptor {
    2828
    29     public override string Name { get { return "Korns 11 y = 6.87 + (11 * cos(7.23 * X0 * X0 * X0))"; } }
     29    public override string Name { get { return "Korns 11 y = 6.87 + (11 * cos(7.23 * X0³))"; } }
    3030    public override string Description {
    3131      get {
     
    4646    protected override string[] AllowedInputVariables { get { return new string[] { "X0", "X1", "X2", "X3", "X4" }; } }
    4747    protected override int TrainingPartitionStart { get { return 0; } }
    48     protected override int TrainingPartitionEnd { get { return 5000; } }
    49     protected override int TestPartitionStart { get { return 5000; } }
    50     protected override int TestPartitionEnd { get { return 10000; } }
     48    protected override int TrainingPartitionEnd { get { return 10000; } }
     49    protected override int TestPartitionStart { get { return 10000; } }
     50    protected override int TestPartitionEnd { get { return 20000; } }
    5151
    5252    protected override List<List<double>> GenerateValues() {
Note: See TracChangeset for help on using the changeset viewer.