|
|||||||||
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
edu.udo.cs.yale.operator.features.construction.AbstractGeneratingGeneticAlgorithm
public abstract class AbstractGeneratingGeneticAlgorithm
In contrast to its superclass GeneticAlgorithm
, the
GeneratingGeneticAlgorithm
generates new attributes and thus can
change the length of an individual. Therfore specialized mutation and
crossover operators are being applied. Generators are chosen at random from a
list of generators specified by boolean parameters.
Since this operator does not contain algorithms to extract features from
value series, it is restricted to example sets with only single attributes.
For automatic feature extraction from values series the value series plugin
for Yale written by Ingo Mierswa should be used. It is available at http://yale.cs.uni-dortmund.de
Field Summary |
---|
Fields inherited from class edu.udo.cs.yale.operator.features.selection.AbstractGeneticAlgorithm |
---|
BOLTZMANN_SELECTION, CUT_SELECTION, NON_DOMINATED_SORTING_SELECTION, RANK_SELECTION, ROULETTE_WHEEL, SELECTION_SCHEMES, STOCHASTIC_UNIVERSAL, TOURNAMENT_SELECTION, UNIFORM_SELECTION |
Constructor Summary | |
---|---|
AbstractGeneratingGeneticAlgorithm(OperatorDescription description)
|
Method Summary | |
---|---|
Population |
createInitialPopulation(ExampleSet es)
Sets up a population of given size and creates ExampleSets with randomly selected attributes (the probability to be switched on is controlled by pInitialize). |
protected PopulationOperator |
getCrossoverPopulationOperator(ExampleSet exampleSet)
Returns an UnbalancedCrossover . |
protected abstract PopulationOperator |
getGeneratingPopulationOperator(ExampleSet exampleSet)
Returns a specialized generating mutation, e.g. a AttributeGenerator . |
java.util.List<FeatureGenerator> |
getGenerators()
Returns a list with all generator which should be used. |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
protected java.util.List<PopulationOperator> |
getPreProcessingPopulationOperators(ExampleSet exampleSet)
Returns an empty list. |
Methods inherited from class edu.udo.cs.yale.operator.features.selection.AbstractGeneticAlgorithm |
---|
getMutationPopulationOperator, getPostEvaluationPopulationOperators, getPostProcessingPopulationOperators, getPreEvaluationPopulationOperators, solutionGoodEnough |
Methods inherited from class edu.udo.cs.yale.operator.features.FeatureOperator |
---|
apply, 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 |
Constructor Detail |
---|
public AbstractGeneratingGeneticAlgorithm(OperatorDescription description)
Method Detail |
---|
protected abstract PopulationOperator getGeneratingPopulationOperator(ExampleSet exampleSet) throws OperatorException
AttributeGenerator
.
OperatorException
public Population createInitialPopulation(ExampleSet es) throws UndefinedParameterError
createInitialPopulation
in class FeatureOperator
UndefinedParameterError
protected java.util.List<PopulationOperator> getPreProcessingPopulationOperators(ExampleSet exampleSet) throws OperatorException
AbstractGeneticAlgorithm
getPreProcessingPopulationOperators
in class AbstractGeneticAlgorithm
OperatorException
protected PopulationOperator getCrossoverPopulationOperator(ExampleSet exampleSet) throws UndefinedParameterError
UnbalancedCrossover
.
getCrossoverPopulationOperator
in class AbstractGeneticAlgorithm
UndefinedParameterError
public java.util.List<FeatureGenerator> getGenerators()
public java.util.List<ParameterType> getParameterTypes()
Operator
getParameterTypes
in class AbstractGeneticAlgorithm
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |