程序包 weka.classifiers
类 RandomizableMultipleClassifiersCombiner
java.lang.Object
weka.classifiers.Classifier
weka.classifiers.MultipleClassifiersCombiner
weka.classifiers.RandomizableMultipleClassifiersCombiner
- 所有已实现的接口:
Serializable
,Cloneable
,CapabilitiesHandler
,OptionHandler
,Randomizable
,RevisionHandler
- 直接已知子类:
MultiScheme
,Stacking
,Vote
public abstract class RandomizableMultipleClassifiersCombiner
extends MultipleClassifiersCombiner
implements Randomizable
Abstract utility class for handling settings common to randomizable
meta classifiers that build an ensemble from multiple classifiers based
on a given random number seed.
- 版本:
- $Revision: 1.4 $
- 作者:
- Eibe Frank (eibe@cs.waikato.ac.nz)
- 另请参阅:
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明String[]
Gets the current settings of the classifier.int
getSeed()
Gets the seed for the random number generationsReturns an enumeration describing the available options.Returns the tip text for this propertyvoid
setOptions
(String[] options) Parses a given list of options.void
setSeed
(int seed) Set the seed for random number generation.从类继承的方法 weka.classifiers.MultipleClassifiersCombiner
classifiersTipText, getCapabilities, getClassifier, getClassifiers, setClassifiers
从类继承的方法 weka.classifiers.Classifier
buildClassifier, classifyInstance, debugTipText, distributionForInstance, forName, getDebug, getRevision, makeCopies, makeCopy, setDebug
-
构造器详细资料
-
RandomizableMultipleClassifiersCombiner
public RandomizableMultipleClassifiersCombiner()
-
-
方法详细资料
-
listOptions
Returns an enumeration describing the available options.- 指定者:
listOptions
在接口中OptionHandler
- 覆盖:
listOptions
在类中MultipleClassifiersCombiner
- 返回:
- an enumeration of all the available options.
-
setOptions
Parses a given list of options. Valid options are:-B classifierstring
Classifierstring should contain the full class name of a scheme included for selection followed by options to the classifier (required, option should be used once for each classifier).-S num
Set the random number seed (default 1).- 指定者:
setOptions
在接口中OptionHandler
- 覆盖:
setOptions
在类中MultipleClassifiersCombiner
- 参数:
options
- the list of options as an array of strings- 抛出:
Exception
- if an option is not supported
-
getOptions
Gets the current settings of the classifier.- 指定者:
getOptions
在接口中OptionHandler
- 覆盖:
getOptions
在类中MultipleClassifiersCombiner
- 返回:
- an array of strings suitable for passing to setOptions
-
seedTipText
Returns the tip text for this property- 返回:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setSeed
public void setSeed(int seed) Set the seed for random number generation.- 指定者:
setSeed
在接口中Randomizable
- 参数:
seed
- the seed
-
getSeed
public int getSeed()Gets the seed for the random number generations- 指定者:
getSeed
在接口中Randomizable
- 返回:
- the seed for the random number generation
-