程序包 weka.core
接口 AdditionalMeasureProducer
- 所有已知实现类:
AdditiveRegression
,ADTree
,AttributeSelectedClassifier
,AveragingResultProducer
,Bagging
,BallTree
,BayesNet
,BayesNetGenerator
,BFTree
,BIFReader
,ClassifierSplitEvaluator
,CostSensitiveClassifierSplitEvaluator
,CoverTree
,CrossValidationResultProducer
,DatabaseResultProducer
,DecisionTable
,DensityBasedClustererSplitEvaluator
,DTNB
,EditableBayesNet
,FT
,GridSearch
,IBk
,J48
,J48graft
,JRip
,KDTree
,LADTree
,LearningRateResultProducer
,LinearNNSearch
,LMT
,M5Base
,M5P
,M5Rules
,NBTree
,NearestNeighbourSearch
,PART
,PerformanceStats
,RandomForest
,RandomSplitResultProducer
,RegressionSplitEvaluator
,REPTree
,Ridor
,SimpleCart
,SimpleLogistic
,SMOreg
,TreePerformanceStats
public interface AdditionalMeasureProducer
Interface to something that can produce measures other than those
calculated by evaluation modules.
- 版本:
- $Revision: 1.8 $
- 作者:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
方法概要
修饰符和类型方法说明Returns an enumeration of the measure names.double
getMeasure
(String measureName) Returns the value of the named measure
-
方法详细资料
-
enumerateMeasures
Enumeration enumerateMeasures()Returns an enumeration of the measure names. Additional measures must follow the naming convention of starting with "measure", eg. double measureBlah()- 返回:
- an enumeration of the measure names
-
getMeasure
Returns the value of the named measure- 参数:
measureName
- the name of the measure to query for its value- 返回:
- the value of the named measure
- 抛出:
IllegalArgumentException
- if the named measure is not supported
-