- Timestamp:
- 03/02/16 18:58:21 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Vladislavleva/KotanchekFunction.cs
r12292 r13644 28 28 public class KotanchekFunction : ArtificialRegressionDataDescriptor { 29 29 30 public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(- (X1 - 1))² / (1.2 + (X2 -2.5)²"; } }30 public override string Name { get { return "Vladislavleva-1 F1(X1,X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)"; } } 31 31 public override string Description { 32 32 get { 33 33 return "Paper: Order of Nonlinearity as a Complexity Measure for Models Generated by Symbolic Regression via Pareto Genetic Programming " + Environment.NewLine 34 34 + "Authors: Ekaterina J. Vladislavleva, Member, IEEE, Guido F. Smits, Member, IEEE, and Dick den Hertog" + Environment.NewLine 35 + "Function: F1(X1, X2) = exp(- (X1 - 1))² / (1.2 + (X2 -2.5)²" + Environment.NewLine35 + "Function: F1(X1, X2) = exp(- (X1 - 1)²) / (1.2 + (X2 - 2.5)²)" + Environment.NewLine 36 36 + "Training Data: 100 points X1, X2 = Rand(0.3, 4)" + Environment.NewLine 37 37 + "Test Data: 45*45 points (X1, X2) = (-0.2:0.1:4.2)" + Environment.NewLine
Note: See TracChangeset
for help on using the changeset viewer.