Changeset 8238 for trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFive.cs
- Timestamp:
- 07/05/12 16:55:26 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Keijzer/KeijzerFunctionFive.cs
r8226 r8238 25 25 26 26 namespace HeuristicLab.Problems.Instances.DataAnalysis { 27 public class KeijzerFunction Six: ArtificialRegressionDataDescriptor {27 public class KeijzerFunctionFive : ArtificialRegressionDataDescriptor { 28 28 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²)"; } } 30 30 public override string Description { 31 31 get { 32 32 return "Paper: Improving Symbolic Regression with Interval Arithmetic and Linear Scaling" + Environment.NewLine 33 33 + "Authors: Maarten Keijzer" + Environment.NewLine 34 + "Function: f(x) = (30 * x * z) / ((x - 10) * y ^2)" + Environment.NewLine34 + "Function: f(x) = (30 * x * z) / ((x - 10) * y²)" + Environment.NewLine 35 35 + "range(train): 1000 points x,z = rnd(-1, 1), y = rnd(1, 2)" + Environment.NewLine 36 36 + "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.