|
|||||||||
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.meta.ParameterOptimizationOperator
edu.udo.cs.yale.operator.meta.EvolutionaryParameterOptimizationOperator
public class EvolutionaryParameterOptimizationOperator
This operator finds the optimal values for a set of parameters using an evolutionary
strategies approach which is often more appropriate than a grid search or a greedy search
like the quadratic programming approach and leads to better results. The parameter
parameters is a list of key value pairs
where the keys are of the form operator_name.parameter_name
and
the value must be a colon separated pair of a minimum and a maximum value for each
of the parameters, e.g. 10:100 for a range of 10 until 100.
The operator returns an
optimal ParameterSet
which can as well be written to a file with a
ParameterSetWriter
. This parameter set
can be read in another experiment using a
ParameterSetLoader
.
The file format of the parameter set file is straightforward and can easily be
generated by external applications. Each line is of the form
operator_name.parameter_name = value
Field Summary | |
---|---|
private IOContainer |
input
This variable holds a reference to the input container which is copied before each evaluation. |
private Operator[] |
operators
The operators for which parameters should be optimized. |
private ESOptimization |
optimizer
The actual optimizer. |
private java.lang.String[] |
parameters
The names of the parameters which should be optimized. |
private int[] |
types
The parameter types. |
Constructor Summary | |
---|---|
EvolutionaryParameterOptimizationOperator(OperatorDescription description)
|
Method Summary | |
---|---|
IOObject[] |
apply()
Applies all inner operators. |
double |
getCurrentBestPerformance()
|
int |
getNumberOfSteps()
Returns the number of steps performed by this chain. |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
PerformanceVector |
setParametersAndEvaluate(Individual individual)
|
Methods inherited from class edu.udo.cs.yale.operator.meta.ParameterOptimizationOperator |
---|
getInnerOperatorCondition, getInputClasses, getMaxNumberOfInnerOperators, getMinNumberOfInnerOperators, getOutputClasses, getPerformance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private IOContainer input
private ESOptimization optimizer
private Operator[] operators
private java.lang.String[] parameters
private int[] types
Constructor Detail |
---|
public EvolutionaryParameterOptimizationOperator(OperatorDescription description)
Method Detail |
---|
public double getCurrentBestPerformance()
getCurrentBestPerformance
in class ParameterOptimizationOperator
public IOObject[] apply() throws OperatorException
OperatorChain
OperatorChain.clearStepCounter()
.
apply
in class OperatorChain
OperatorException
public PerformanceVector setParametersAndEvaluate(Individual individual) throws OperatorException
OperatorException
public int getNumberOfSteps()
OperatorChain
getNumberOfSteps
in class ParameterOptimizationOperator
public java.util.List<ParameterType> getParameterTypes()
Operator
getParameterTypes
in class ParameterOptimizationOperator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |