Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/05/12 16:55:26 (12 years ago)
Author:
gkronber
Message:

#1784 adapted Keijzer instances

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFifteen.cs

    r8226 r8238  
    2525
    2626namespace HeuristicLab.Problems.Instances.DataAnalysis {
    27   public class KeijzerFunctionSixteen : ArtificialRegressionDataDescriptor {
     27  public class KeijzerFunctionFifteen : ArtificialRegressionDataDescriptor {
    2828
    29     public override string Name { get { return "Keijzer 16 f(x, y) = x^3 / 5 + y^3 / 2 - y - x"; } }
     29    public override string Name { get { return "Keijzer 15 f(x, y) = x³ / 5 + y³ / 2 - y - x"; } }
    3030    public override string Description {
    3131      get {
    3232        return "Paper: Improving Symbolic Regression with Interval Arithmetic and Linear Scaling" + Environment.NewLine
    3333        + "Authors: Maarten Keijzer" + Environment.NewLine
    34         + "Function: f(x, y) = x^3 / 5 + y^3 / 2 - y - x" + Environment.NewLine
     34        + "Function: f(x, y) = x³ / 5 + y³ / 2 - y - x" + Environment.NewLine
    3535        + "range(train): 20 Training cases x,y = rnd(-3, 3)" + Environment.NewLine
    3636        + "range(test): x,y = [-3:0.01:3]" + Environment.NewLine
    3737        + "Function Set: x + y, x * y, 1/x, -x, sqrt(x)" + Environment.NewLine + Environment.NewLine
    38         + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the intercal [-3, 3] (not ca. 360000 as described) "
     38        + "Note: Test partition has been adjusted to only 100 random uniformly distributed test cases in the interval [-3, 3] (not ca. 360000 as described) "
    3939        + ", but 5000 cases are created";
    4040      }
     
    4646    protected override int TrainingPartitionEnd { get { return 20; } }
    4747    protected override int TestPartitionStart { get { return 2500; } }
    48     protected override int TestPartitionEnd { get { return 5000; } }
     48    protected override int TestPartitionEnd { get { return 2600; } }
    4949
    5050    protected override List<List<double>> GenerateValues() {
Note: See TracChangeset for help on using the changeset viewer.