|
|||||||||
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.weighting.FeatureWeighting
public abstract class FeatureWeighting
This operator performs the weighting under the naive assumption that the
features are independent from each other. Each attribute is weighted with a
linear search. This approach may deliver good results after short time if the
features indeed are not highly correlated.
The ideas of forward selection and backward elimination can easily be used
for the weighting with help of a SimpleWeighting
.
Field Summary | |
---|---|
private int |
generationsWOImp
|
private java.util.List<PopulationOperator> |
postOps
|
private java.util.List<PopulationOperator> |
preOps
|
Constructor Summary | |
---|---|
FeatureWeighting(OperatorDescription description)
|
Method Summary | |
---|---|
IOObject[] |
apply()
Applies the feature operator: collects the pre- and postevaluation operators create an initial population evaluate the initial population loop as long as solution is not good enough apply all pre evaluation operators evaluate the population update the population's best individual apply all post evaluation operators return all generation's best individual |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
java.util.List<PopulationOperator> |
getPostEvaluationPopulationOperators(ExampleSet eSet)
Must return a list of PopulationOperators. |
java.util.List<PopulationOperator> |
getPreEvaluationPopulationOperators(ExampleSet eSet)
Must return a list of PopulationOperators. |
abstract PopulationOperator |
getWeightingOperator(java.lang.String parameter)
|
boolean |
solutionGoodEnough(Population population)
Has to return true if the main loop can be stopped because a solution is concidered to be good enough according to some criterion. |
Methods inherited from class edu.udo.cs.yale.operator.features.FeatureOperator |
---|
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 |
---|
private java.util.List<PopulationOperator> preOps
private java.util.List<PopulationOperator> postOps
private int generationsWOImp
Constructor Detail |
---|
public FeatureWeighting(OperatorDescription description)
Method Detail |
---|
public abstract PopulationOperator getWeightingOperator(java.lang.String parameter)
public IOObject[] apply() throws OperatorException
FeatureOperator
apply
in class FeatureOperator
OperatorException
public boolean solutionGoodEnough(Population population)
FeatureOperator
solutionGoodEnough
in class FeatureOperator
public java.util.List<PopulationOperator> getPreEvaluationPopulationOperators(ExampleSet eSet)
FeatureOperator
getPreEvaluationPopulationOperators
in class FeatureOperator
public java.util.List<PopulationOperator> getPostEvaluationPopulationOperators(ExampleSet eSet)
FeatureOperator
getPostEvaluationPopulationOperators
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 |