All Packages Class Hierarchy This Package Previous Next Index WEKA's home
Interface weka.core.AdditionalMeasureProducer
- public interface AdditionalMeasureProducer
Interface to something that can produce measures other than those
calculated by evaluation modules.
- Author:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
enumerateMeasures()
- Returns an enumeration of the measure names.
-
getMeasure(String)
- Returns the value of the named measure
enumerateMeasures
public abstract Enumeration enumerateMeasures()
- Returns an enumeration of the measure names. Additional measures
must follow the naming convention of starting with "measure", eg.
double measureBlah()
- Returns:
- an enumeration of the measure names
getMeasure
public abstract double getMeasure(String measureName) throws IllegalArgumentException
- Returns the value of the named measure
- Parameters:
- measureName - the name of the measure to query for its value
- Returns:
- the value of the named measure
- Throws: IllegalArgumentException
- if the named measure is not supported
All Packages Class Hierarchy This Package Previous Next Index WEKA's home