edu.udo.cs.yale.operator.learner.meta.eaboost
Class BoostingIndividual
java.lang.Object
edu.udo.cs.yale.operator.learner.meta.eaboost.BoostingIndividual
- Direct Known Subclasses:
- BayBoostBoostingIndividual
public abstract class BoostingIndividual
- extends java.lang.Object
Individuals contain the model information and the fitness.
- Version:
- $Id: BoostingIndividual.java,v 1.2 2006/04/05 09:42:01 ingomierswa
Exp $
- Author:
- Ingo Mierswa
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CROSSOVER_TYPES
public static final java.lang.String[] CROSSOVER_TYPES
- The names for the crossover types.
CROSSOVER_ONE_POINT
public static final int CROSSOVER_ONE_POINT
- Indicates a one-point crossover type.
- See Also:
- Constant Field Values
CROSSOVER_UNIFORM
public static final int CROSSOVER_UNIFORM
- Indicates a uniform crossover type.
- See Also:
- Constant Field Values
fitness
private PerformanceVector fitness
crowdingDistance
private double crowdingDistance
BoostingIndividual
public BoostingIndividual()
mutate
public abstract BoostingIndividual mutate(ExampleSet exampleSet)
throws OperatorException
- Throws:
OperatorException
crossover
public abstract java.util.List<BoostingIndividual> crossover(BoostingIndividual parent2,
int type)
createModel
public abstract Model createModel(ExampleSet exampleSet)
throws OperatorException
- Throws:
OperatorException
getCrowdingDistance
public double getCrowdingDistance()
setCrowdingDistance
public void setCrowdingDistance(double crowdingDistance)
setPerformance
public void setPerformance(PerformanceVector fitness)
getPerformance
public PerformanceVector getPerformance()
Copyright © 2001-2006