edu.udo.cs.yale.operator.performance
Class PredictionAverage

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.tools.math.Averagable
              extended by edu.udo.cs.yale.operator.performance.PerformanceCriterion
                  extended by edu.udo.cs.yale.operator.performance.MeasuredPerformance
                      extended by edu.udo.cs.yale.operator.performance.PredictionAverage
All Implemented Interfaces:
IOObject, ResultObject, java.lang.Cloneable, java.lang.Comparable<Averagable>

public class PredictionAverage
extends MeasuredPerformance

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.

Version:
$Id: PredictionAverage.java,v 2.18 2006/03/21 15:35:51 ingomierswa Exp $
Author:
Ingo Mierswa

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

sum

private double sum

squaredSum

private double squaredSum

count

private int count
Constructor Detail

PredictionAverage

public PredictionAverage()
Method Detail

writeCriterionData

public void writeCriterionData(java.io.PrintWriter out)
                        throws java.io.IOException
Description copied from class: PerformanceCriterion
Writes the performance criterion into the given writer. Please note that the criterion must be written in a human readable format!

Specified by:
writeCriterionData in class PerformanceCriterion
Throws:
java.io.IOException


readCriterionData

public void readCriterionData(java.io.BufferedReader in)
                       throws java.io.IOException
Description copied from class: PerformanceCriterion
Reads the performance data from the given reader.

Specified by:
readCriterionData in class PerformanceCriterion
Throws:
java.io.IOException


getExampleCount

public int getExampleCount()
Description copied from class: PerformanceCriterion
Returns the number of data points which was used to determine the criterion value.

Specified by:
getExampleCount in class PerformanceCriterion


countExample

public void countExample(Example example)
Description copied from class: MeasuredPerformance
Counts a single example, e.g. by summing up errors.

Specified by:
countExample in class MeasuredPerformance


getMikroAverage

public double getMikroAverage()
Description copied from class: Averagable
Returns the (current) value of the averagable (the average itself).

Specified by:
getMikroAverage in class Averagable


getMikroVariance

public double getMikroVariance()
Description copied from class: Averagable
Returns the variance of the averagable. The returned value must not be negative. If the averagable does not define a variance this method should return Double.NaN.

Specified by:
getMikroVariance in class Averagable


startCounting

public void startCounting(ExampleSet set)
Description copied from class: MeasuredPerformance
Initialises the criterion. The default implementation does nothing.

Overrides:
startCounting in class MeasuredPerformance


getName

public java.lang.String getName()
Description copied from class: Averagable
Returns the name of this averagable.

Specified by:
getName in interface ResultObject
Specified by:
getName in class Averagable


getFitness

public double getFitness()
Returns 0.

Specified by:
getFitness in class PerformanceCriterion


cloneAveragable

protected void cloneAveragable(Averagable newPC)
Description copied from class: Averagable
Must be implemented by subclasses such that it copies all values of 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.

Specified by:
cloneAveragable in class Averagable


buildSingleAverage

public void buildSingleAverage(Averagable performance)
Description copied from class: Averagable
This method should build the average of this and another averagables of the same type. The next invocation of getValue() should return the average of this and the given averagable. Please refer to SimpleCriterion for a simple implementation example.

Specified by:
buildSingleAverage in class Averagable


getDescription

public java.lang.String getDescription()
Description copied from class: MeasuredPerformance
Returns a description of the performance criterion.

Specified by:
getDescription in class MeasuredPerformance



Copyright © 2001-2006