|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.features.IndividualOperator
edu.udo.cs.yale.operator.features.EquivalentAttributeRemoval
public class EquivalentAttributeRemoval
If the example set contain two equivalent attributes, the longer
representation is removed. The length is calculated as the number of nested
brackets. The equivalency probe is not done by structural comparison. The
attribute values of the equations in question are randomly sampled and the
equation results compared. If the difference is less than epsilon for
k trials, the equations are probably equivalent. At least they
produce similar values.
The values of the attributes are sampled in the range of the minimum and
maximum values of the attribute. This ensures equivalency or at least very
similar values for the definition range in question. Therefore a
MemoryExampleTable
is constructed and filled with random values. Then
a AttributeParser
is used to construct the attributes values.
Field Summary | |
---|---|
private double |
epsilon
If the difference is smaller than epsilon, the attributes are considered as equivalent. |
private int |
numberOfSamples
Indicates the number of examples which should be randomly generated to check equivalency. |
private RandomGenerator |
random
The random generator for the example values. |
private boolean |
recalculateAttributeStatistics
Recalculates attribute statistics before sampling. |
Constructor Summary | |
---|---|
EquivalentAttributeRemoval(int numberOfSamples,
double epsilon,
boolean recalculateAttributeStatistics,
RandomGenerator random)
Creates a new equivalent attribute removal population operator. |
Method Summary | |
---|---|
private boolean |
equivalent(ExampleSet exampleSet)
|
java.util.List<Individual> |
operate(Individual individual)
Subclasses must implement this method providing a list of new individuals. |
Methods inherited from class edu.udo.cs.yale.operator.features.IndividualOperator |
---|
operate, performOperation |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private int numberOfSamples
private double epsilon
private boolean recalculateAttributeStatistics
private RandomGenerator random
Constructor Detail |
---|
public EquivalentAttributeRemoval(int numberOfSamples, double epsilon, boolean recalculateAttributeStatistics, RandomGenerator random)
Method Detail |
---|
public java.util.List<Individual> operate(Individual individual)
IndividualOperator
operate
in class IndividualOperator
private boolean equivalent(ExampleSet exampleSet)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |