Package adams.data.evaluator.instance
Interface WekaClassifierBasedEvaluator
-
- All Superinterfaces:
adams.core.CleanUpHandler
,Comparable
,adams.core.Destroyable
,Evaluator
,adams.core.option.OptionHandler
,Serializable
,adams.core.ShallowCopySupporter<Evaluator>
- All Known Implementing Classes:
CrossValidatedNeighborHood
,CrossValidatedPrediction
,IntervalEstimatorEvaluator
public interface WekaClassifierBasedEvaluator extends Evaluator
Interface for evaluators that make use of classifiers.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
classifierTipText()
Returns the tip text for this property.weka.classifiers.Classifier
getClassifier()
Returns the classifier in use.void
setClassifier(weka.classifiers.Classifier value)
Sets the classifier to use.-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface adams.data.evaluator.instance.Evaluator
build, evaluate, getMissingEvaluation, missingEvaluationTipText, setMissingEvaluation
-
-
-
-
Method Detail
-
setClassifier
void setClassifier(weka.classifiers.Classifier value)
Sets the classifier to use.- Parameters:
value
- the classifier
-
getClassifier
weka.classifiers.Classifier getClassifier()
Returns the classifier in use.- Returns:
- the classifier
-
classifierTipText
String classifierTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
-