|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.OperatorChain
edu.udo.cs.yale.operator.features.FeatureOperator
edu.udo.cs.yale.operator.features.selection.AbstractGeneticAlgorithm
public abstract class AbstractGeneticAlgorithm
Genetic algorithms are general purpose optimization / search algorithms that
are suitable in case of no or little problem knowledge.
A genetic algorithm works as follows
population_size
individuals. Each attribute is switched on
with probability p_initialize
p_crossover
. The type of crossover can be
selected by crossover_type
.p_mutation
and vice versa. Other mutations may for example
create new attributes etc.
Field Summary | |
---|---|
static int |
BOLTZMANN_SELECTION
|
static int |
CUT_SELECTION
|
private int |
generationsWithoutImproval
Stop criterion: Stop after generationsWithoutImproval generations without an improval of the fitness. |
private int |
maxGen
Maximum number of generations. |
static int |
NON_DOMINATED_SORTING_SELECTION
|
private int |
numberOfIndividuals
The size of the population. |
static int |
RANK_SELECTION
|
static int |
ROULETTE_WHEEL
|
static java.lang.String[] |
SELECTION_SCHEMES
|
static int |
STOCHASTIC_UNIVERSAL
|
static int |
TOURNAMENT_SELECTION
|
static int |
UNIFORM_SELECTION
|
Constructor Summary | |
---|---|
AbstractGeneticAlgorithm(OperatorDescription description)
|
Method Summary | |
---|---|
protected abstract PopulationOperator |
getCrossoverPopulationOperator(ExampleSet example)
Returns an operator that performs crossover. |
protected abstract PopulationOperator |
getMutationPopulationOperator(ExampleSet example)
Returns an operator that performs the mutation. |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
java.util.List<PopulationOperator> |
getPostEvaluationPopulationOperators(ExampleSet input)
Returns the list with post eval pop ops. |
protected java.util.List<PopulationOperator> |
getPostProcessingPopulationOperators(ExampleSet input)
Returns an empty list. |
java.util.List<PopulationOperator> |
getPreEvaluationPopulationOperators(ExampleSet input)
Returns the list with pre eval pop ops. |
protected java.util.List<PopulationOperator> |
getPreProcessingPopulationOperators(ExampleSet input)
Returns an empty list. |
boolean |
solutionGoodEnough(Population pop)
Returns true if generation is >= maximum_number_of_generations or after generations_without_improval generations without improval. |
Methods inherited from class edu.udo.cs.yale.operator.features.FeatureOperator |
---|
apply, createInitialPopulation, evaluate, evaluate, getCheckForMaximum, getInnerOperatorCondition, getInputClasses, getMaxNumberOfInnerOperators, getMinNumberOfInnerOperators, getNumberOfSteps, getOutputClasses, getRandom, setCheckForMaximum |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String[] SELECTION_SCHEMES
public static final int UNIFORM_SELECTION
public static final int CUT_SELECTION
public static final int ROULETTE_WHEEL
public static final int STOCHASTIC_UNIVERSAL
public static final int BOLTZMANN_SELECTION
public static final int RANK_SELECTION
public static final int TOURNAMENT_SELECTION
public static final int NON_DOMINATED_SORTING_SELECTION
private int numberOfIndividuals
private int maxGen
private int generationsWithoutImproval
Constructor Detail |
---|
public AbstractGeneticAlgorithm(OperatorDescription description)
Method Detail |
---|
protected abstract PopulationOperator getMutationPopulationOperator(ExampleSet example) throws OperatorException
OperatorException
protected abstract PopulationOperator getCrossoverPopulationOperator(ExampleSet example) throws OperatorException
OperatorException
protected java.util.List<PopulationOperator> getPreProcessingPopulationOperators(ExampleSet input) throws OperatorException
OperatorException
protected java.util.List<PopulationOperator> getPostProcessingPopulationOperators(ExampleSet input) throws OperatorException
OperatorException
public final java.util.List<PopulationOperator> getPreEvaluationPopulationOperators(ExampleSet input) throws OperatorException
getPreEvaluationPopulationOperators
in class FeatureOperator
OperatorException
public final java.util.List<PopulationOperator> getPostEvaluationPopulationOperators(ExampleSet input) throws OperatorException
getPostEvaluationPopulationOperators
in class FeatureOperator
OperatorException
public boolean solutionGoodEnough(Population pop)
solutionGoodEnough
in class FeatureOperator
public java.util.List<ParameterType> getParameterTypes()
Operator
getParameterTypes
in class FeatureOperator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |