|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.math.optimization.ec.es.ESOptimization
public abstract class ESOptimization
Evolutionary Strategy approach for SVM optimization. Currently only classification problems are supported.
Field Summary | |
---|---|
private int |
actualEvalCounter
This field counts the number of actually calculated evaluations (unchanged individuals do not have to be re-evaluated). |
static int |
BOLTZMANN_SELECTION
Indicates a Boltzmann selection scheme. |
static int |
CUT_SELECTION
Indicates a cut selection scheme. |
static int |
GAUSSIAN_MUTATION
Indicates a gaussian mutation. |
private int |
generationsWithoutImprovement
The maximum numbers of generations without improvement. |
private int |
individualSize
The dimension of each individual. |
static int |
INIT_TYPE_MAX
Indicates that the start population should be initialized with the maximum value. |
static int |
INIT_TYPE_MIN
Indicates that the start population should be initialized with the minimum value. |
static int |
INIT_TYPE_RANDOM
Indicates that the start population should be randomly initialized. |
private int |
initType
The type of start population initialization. |
private double[] |
max
This parameter indicates the maximum value for all genes. |
private int |
maxGenerations
The maximum number of generations. |
private double[] |
min
This parameter indicates the minimum value for all genes. |
private PopulationOperator |
mutation
The mutation operator. |
static java.lang.String[] |
MUTATION_TYPES
The names of the mutation types. |
private int |
mutationType
The type of the mutation. |
static int |
NO_MUTATION
Indicates no mutation. |
static int |
NON_DOMINATED_SORTING_SELECTION
Indicates a multi-objective selection scheme (NSGA II). |
private java.util.Collection<PopulationOperator> |
popOps
Population operators. |
private Population |
population
The current population. |
static java.lang.String[] |
POPULATION_INIT_TYPES
The names of the initialization types. |
private int |
populationSize
The number of individuals. |
private RandomGenerator |
random
The random number generator. |
static int |
RANK_SELECTION
Indicates a rank based selection scheme. |
static int |
ROULETTE_WHEEL
Indicates a roulette wheel selection scheme. |
static java.lang.String[] |
SELECTION_TYPES
The names of all available selection schemes. |
private boolean |
showPlot
Indicates if a convergence plot should be drawn. |
static int |
SPARSITY_MUTATION
Indicates a hybrid between switching mutation and Gaussian mutation. |
static int |
STOCHASTIC_UNIVERSAL
Indicates a stochastic universal sampling selection scheme. |
static int |
SWITCHING_MUTATION
Indicates a switching mutation. |
private int |
totalEvalCounter
This field counts the total number of evaluations during optimization. |
static int |
TOURNAMENT_SELECTION
Indicates a tournament selection scheme. |
static int |
UNIFORM_SELECTION
Indicates a uniform sampling selection scheme. |
static int |
VALUE_TYPE_DOUBLE
This constant indicated that a corresponding dimension is actually built from double values. |
static int |
VALUE_TYPE_INT
This constant indicates that the dimension is actually built from integers instead of doubles. |
private int[] |
valueTypes
The value types, either DOUBLE (default) or INT. |
Constructor Summary | |
---|---|
ESOptimization(double minValue,
double maxValue,
int populationSize,
int individualSize,
int initType,
int maxGenerations,
int generationsWithoutImprovement,
int selectionType,
double tournamentFraction,
boolean keepBest,
int mutationType,
double crossoverProb,
boolean showPlot,
RandomGenerator random)
Creates a new evolutionary SVM optimization. |
Method Summary | |
---|---|
private Population |
createMaxStartPopulation()
Randomly creates the initial population. |
private Population |
createMinStartPopulation()
Randomly creates the initial population. |
private Population |
createRandomStartPopulation()
Randomly creates the initial population. |
private void |
evaluate(Population population)
Evaluates the individuals of the given population. |
abstract PerformanceVector |
evaluateIndividual(Individual individual)
Subclasses must implement this method to calculate the fitness of the given individual. |
double |
getBestFitnessEver()
Returns the best fitness ever. |
double |
getBestFitnessInGeneration()
Returns the best fitness in the current generation. |
PerformanceVector |
getBestPerformanceEver()
Returns the best performance vector ever. |
double[] |
getBestValuesEver()
Returns the best values ever. |
int |
getGeneration()
Returns the current generation. |
double |
getMax(int index)
|
double |
getMin(int index)
|
int |
getValueType(int index)
|
void |
nextIteration()
This method is invoked after each evaluation. |
void |
optimize()
Starts the optimization. |
private void |
recalculateSigma()
|
void |
setMax(int index,
double v)
|
void |
setMin(int index,
double v)
|
void |
setValueType(int index,
int type)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int VALUE_TYPE_DOUBLE
public static final int VALUE_TYPE_INT
public static final java.lang.String[] SELECTION_TYPES
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
public static final java.lang.String[] MUTATION_TYPES
public static final int NO_MUTATION
public static final int GAUSSIAN_MUTATION
public static final int SWITCHING_MUTATION
public static final int SPARSITY_MUTATION
public static final java.lang.String[] POPULATION_INIT_TYPES
public static final int INIT_TYPE_RANDOM
public static final int INIT_TYPE_MIN
public static final int INIT_TYPE_MAX
private double[] min
private double[] max
private int[] valueTypes
private int populationSize
private int individualSize
private int maxGenerations
private int generationsWithoutImprovement
private int initType
private int mutationType
private PopulationOperator mutation
private Population population
private java.util.Collection<PopulationOperator> popOps
private boolean showPlot
private int totalEvalCounter
private int actualEvalCounter
private RandomGenerator random
Constructor Detail |
---|
public ESOptimization(double minValue, double maxValue, int populationSize, int individualSize, int initType, int maxGenerations, int generationsWithoutImprovement, int selectionType, double tournamentFraction, boolean keepBest, int mutationType, double crossoverProb, boolean showPlot, RandomGenerator random)
Method Detail |
---|
public abstract PerformanceVector evaluateIndividual(Individual individual) throws OperatorException
OperatorException
public void nextIteration() throws OperatorException
OperatorException
public double getMin(int index)
public double getMax(int index)
public void setMin(int index, double v)
public void setMax(int index, double v)
private void recalculateSigma()
public int getValueType(int index)
public void setValueType(int index, int type)
public void optimize() throws OperatorException
optimize
in interface Optimization
OperatorException
private void evaluate(Population population) throws OperatorException
OperatorException
public int getGeneration()
getGeneration
in interface Optimization
public double getBestFitnessInGeneration()
getBestFitnessInGeneration
in interface Optimization
public double getBestFitnessEver()
getBestFitnessEver
in interface Optimization
public PerformanceVector getBestPerformanceEver()
getBestPerformanceEver
in interface Optimization
public double[] getBestValuesEver()
getBestValuesEver
in interface Optimization
private Population createRandomStartPopulation()
private Population createMinStartPopulation()
private Population createMaxStartPopulation()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |