|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.tools.math.Averagable
edu.udo.cs.yale.operator.performance.PerformanceCriterion
edu.udo.cs.yale.operator.performance.MeasuredPerformance
edu.udo.cs.yale.operator.performance.MinMaxCriterion
public class MinMaxCriterion
This criterion should be used as wrapper around other performance criteria
(see MinMaxWrapper
). Instead of averages this criterion builds the
minimum of the fitness of the criteria which should be averaged. Maximizing
the minimum instead of the average could lead to a more robust behaviour and
generalization capacity. Furthermore, this criterion can be build arbitrarily
weighted linear combinations of both the minimum and the normal average.
Field Summary | |
---|---|
private int |
counter
|
private MeasuredPerformance |
delegate
|
private double |
fitness
|
private double |
fitnessSum
|
private double |
value
|
private double |
weight
|
Constructor Summary | |
---|---|
MinMaxCriterion()
Necessary for newInstance() during loading. |
|
MinMaxCriterion(MeasuredPerformance delegate,
double weight)
|
Method Summary | |
---|---|
void |
buildSingleAverage(Averagable avg)
This method should build the average of this and another averagables of the same type. |
void |
cloneAveragable(Averagable avg)
Must be implemented by subclasses such that it copies all values of other to this . |
void |
countExample(Example example)
Counts a single example by invoking the delegates method. |
java.lang.String |
getDescription()
Returns a description of the performance criterion. |
int |
getExampleCount()
Returns the number of data points which was used to determine the criterion value. |
double |
getFitness()
Returns the fitness depending on the value. |
double |
getMikroAverage()
Returns the (current) value of the averagable (the average itself). |
double |
getMikroVariance()
Returns the variance of the averagable. |
java.lang.String |
getName()
Returns the name of this averagable. |
void |
readCriterionData(java.io.BufferedReader in)
Reads the performance data from the given reader. |
void |
writeCriterionData(java.io.PrintWriter out)
Writes the performance criterion into the given writer. |
Methods inherited from class edu.udo.cs.yale.operator.performance.MeasuredPerformance |
---|
startCounting |
Methods inherited from class edu.udo.cs.yale.operator.performance.PerformanceCriterion |
---|
compareTo, getMaxFitness, readPerformanceCriterion, writePerformanceCriterion |
Methods inherited from class edu.udo.cs.yale.tools.math.Averagable |
---|
buildAverage, clone, formatDeviation, formatPercent, formatValue, getAverage, getMakroAverage, getMakroStandardDeviation, getMakroVariance, getMikroStandardDeviation, getStandardDeviation, getVariance, toHTML, toString |
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter |
---|
addAction, getActions, getVisualisationComponent, toHTML, toResultString |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
copy, read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
copy, write, write |
Field Detail |
---|
private MeasuredPerformance delegate
private double fitness
private double fitnessSum
private double value
private double weight
private int counter
Constructor Detail |
---|
public MinMaxCriterion()
public MinMaxCriterion(MeasuredPerformance delegate, double weight)
Method Detail |
---|
public void writeCriterionData(java.io.PrintWriter out) throws java.io.IOException
PerformanceCriterion
writeCriterionData
in class PerformanceCriterion
java.io.IOException
public void readCriterionData(java.io.BufferedReader in) throws java.io.IOException
PerformanceCriterion
readCriterionData
in class PerformanceCriterion
java.io.IOException
public int getExampleCount()
PerformanceCriterion
getExampleCount
in class PerformanceCriterion
public void countExample(Example example)
countExample
in class MeasuredPerformance
public java.lang.String getDescription()
getDescription
in class MeasuredPerformance
public java.lang.String getName()
Averagable
getName
in interface ResultObject
getName
in class Averagable
public double getMikroAverage()
Averagable
getMikroAverage
in class Averagable
public double getFitness()
PerformanceCriterion
getFitness
in class PerformanceCriterion
public double getMikroVariance()
Averagable
getMikroVariance
in class Averagable
public void cloneAveragable(Averagable avg)
Averagable
other
to this
. When this method is called,
it is guaranteed, that other
is a subclass of the class of
the object it is called on.
cloneAveragable
in class Averagable
public void buildSingleAverage(Averagable avg)
Averagable
SimpleCriterion
for a simple
implementation example.
buildSingleAverage
in class Averagable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |