|
|||||||||
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.PredictionAverage
public class PredictionAverage
Returns the average value of the prediction. This criterion can be used to
detect whether a learning scheme predicts nonsense, e.g. always the same
error. This criterion is not suitable for evaluating the performance and
should never be used as main criterion. The getFitness()
method
always returns 0.
Field Summary | |
---|---|
private int |
count
|
private double |
squaredSum
|
private double |
sum
|
Constructor Summary | |
---|---|
PredictionAverage()
|
Method Summary | |
---|---|
void |
buildSingleAverage(Averagable performance)
This method should build the average of this and another averagables of the same type. |
protected void |
cloneAveragable(Averagable newPC)
Must be implemented by subclasses such that it copies all values of other to this . |
void |
countExample(Example example)
Counts a single example, e.g. by summing up errors. |
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 0. |
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 |
startCounting(ExampleSet set)
Initialises the criterion. |
void |
writeCriterionData(java.io.PrintWriter out)
Writes the performance criterion into the given writer. |
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 double sum
private double squaredSum
private int count
Constructor Detail |
---|
public PredictionAverage()
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)
MeasuredPerformance
countExample
in class MeasuredPerformance
public double getMikroAverage()
Averagable
getMikroAverage
in class Averagable
public double getMikroVariance()
Averagable
getMikroVariance
in class Averagable
public void startCounting(ExampleSet set)
MeasuredPerformance
startCounting
in class MeasuredPerformance
public java.lang.String getName()
Averagable
getName
in interface ResultObject
getName
in class Averagable
public double getFitness()
getFitness
in class PerformanceCriterion
protected void cloneAveragable(Averagable newPC)
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 performance)
Averagable
SimpleCriterion
for a simple
implementation example.
buildSingleAverage
in class Averagable
public java.lang.String getDescription()
MeasuredPerformance
getDescription
in class MeasuredPerformance
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |