public class Regression extends GPProblem implements SimpleProblemForm
The equation to be regressed is y = x^4 + x^3 + x^2 + x, {x in [-1,1]}
This equation was introduced in J. R. Koza, GP II, 1994.
Parameters
| base.data classname, inherits or == ec.app.regression.RegressionData |
(the class for the prototypical GPData object for the Regression problem) |
| base.size int >= 1 |
(the size of the training set) |
Parameter bases
| base.data | species (the GPData object) |
| Modifier and Type | Field and Description |
|---|---|
double |
currentValue |
double[] |
inputs |
double[] |
outputs |
static String |
P_FILE |
static String |
P_SIZE |
static String |
P_USE_FUNCTION |
private static long |
serialVersionUID |
int |
trainingSetSize |
boolean |
useFunction |
| Constructor and Description |
|---|
Regression() |
| Modifier and Type | Method and Description |
|---|---|
void |
evaluate(EvolutionState state,
Individual ind,
int subpopulation,
int threadnum)
Evaluates the individual in ind, if necessary (perhaps
not evaluating them if their evaluated flags are true),
and sets their fitness appropriately.
|
double |
func(double x) |
void |
setup(EvolutionState state,
Parameter base)
Sets up the object by reading it from the parameters stored
in state, built off of the parameter base base.
|
clone, defaultBasecanEvaluate, closeContacts, describe, describe, finishEvaluating, initializeContacts, prepareToEvaluate, reinitializeContactsequals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdescribeprivate static final long serialVersionUID
public static final String P_SIZE
public static final String P_FILE
public static final String P_USE_FUNCTION
public double currentValue
public int trainingSetSize
public boolean useFunction
public double[] inputs
public double[] outputs
public double func(double x)
public void setup(EvolutionState state, Parameter base)
PrototypeFor prototypes, setup(...) is typically called once for the prototype instance; cloned instances do not receive the setup(...) call. setup(...) may be called more than once; the only guarantee is that it will get called at least once on an instance or some "parent" object from which it was ultimately cloned.
public void evaluate(EvolutionState state, Individual ind, int subpopulation, int threadnum)
SimpleProblemFormevaluate in interface SimpleProblemFormCopyright © 2014 Evolutionary Computation Laboratory at George Mason University. All rights reserved.