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/KeijzerFunctionFive.cs

    r8226 r8238  
    2525
    2626namespace HeuristicLab.Problems.Instances.DataAnalysis {
    27   public class KeijzerFunctionSix : ArtificialRegressionDataDescriptor {
     27  public class KeijzerFunctionFive : ArtificialRegressionDataDescriptor {
    2828
    29     public override string Name { get { return "Keijzer 6 f(x) = (30 * x * z) / ((x - 10)  * y^2)"; } }
     29    public override string Name { get { return "Keijzer 5 f(x) = (30 * x * z) / ((x - 10)  * y²)"; } }
    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) = (30 * x * z) / ((x - 10)  * y^2)" + Environment.NewLine
     34        + "Function: f(x) = (30 * x * z) / ((x - 10)  * y²)" + Environment.NewLine
    3535        + "range(train): 1000 points x,z = rnd(-1, 1), y = rnd(1, 2)" + Environment.NewLine
    3636        + "range(test): 10000 points x,z = rnd(-1, 1), y = rnd(1, 2)" + Environment.NewLine
Note: See TracChangeset for help on using the changeset viewer.