Package weka.classifiers
Class MultipleClassifiersCombiner
- java.lang.Object
-
- weka.classifiers.AbstractClassifier
-
- weka.classifiers.MultipleClassifiersCombiner
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,Classifier,BatchPredictor,CapabilitiesHandler,CapabilitiesIgnorer,CommandlineRunnable,OptionHandler,RevisionHandler
- Direct Known Subclasses:
ParallelMultipleClassifiersCombiner,RandomizableMultipleClassifiersCombiner
public abstract class MultipleClassifiersCombiner extends AbstractClassifier
Abstract utility class for handling settings common to meta classifiers that build an ensemble from multiple classifiers.- Version:
- $Revision: 12204 $
- Author:
- Eibe Frank (eibe@cs.waikato.ac.nz)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class weka.classifiers.AbstractClassifier
BATCH_SIZE_DEFAULT, NUM_DECIMAL_PLACES_DEFAULT
-
-
Constructor Summary
Constructors Constructor Description MultipleClassifiersCombiner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringclassifiersTipText()Returns the tip text for this propertyCapabilitiesgetCapabilities()Returns combined capabilities of the base classifiers, i.e., the capabilities all of them have in common.ClassifiergetClassifier(int index)Gets a single classifier from the set of available classifiers.Classifier[]getClassifiers()Gets the list of possible classifers to choose from.java.lang.String[]getOptions()Gets the current settings of the Classifier.java.util.Enumeration<Option>listOptions()Returns an enumeration describing the available optionsvoidpostExecution()Perform any teardown stuff that might need to happen after execution.voidpreExecution()Perform any setup stuff that might need to happen before commandline execution.voidsetClassifiers(Classifier[] classifiers)Sets the list of possible classifers to choose from.voidsetOptions(java.lang.String[] options)Parses a given list of options.-
Methods inherited from class weka.classifiers.AbstractClassifier
batchSizeTipText, classifyInstance, debugTipText, distributionForInstance, distributionsForInstances, doNotCheckCapabilitiesTipText, forName, getBatchSize, getDebug, getDoNotCheckCapabilities, getNumDecimalPlaces, getRevision, implementsMoreEfficientBatchPrediction, makeCopies, makeCopy, numDecimalPlacesTipText, run, runClassifier, setBatchSize, setDebug, setDoNotCheckCapabilities, setNumDecimalPlaces
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface weka.classifiers.Classifier
buildClassifier
-
-
-
-
Method Detail
-
listOptions
public java.util.Enumeration<Option> listOptions()
Returns an enumeration describing the available options- Specified by:
listOptionsin interfaceOptionHandler- Overrides:
listOptionsin classAbstractClassifier- Returns:
- an enumeration of all the available options
-
setOptions
public void setOptions(java.lang.String[] options) throws java.lang.ExceptionParses 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).- Specified by:
setOptionsin interfaceOptionHandler- Overrides:
setOptionsin classAbstractClassifier- Parameters:
options- the list of options as an array of strings- Throws:
java.lang.Exception- if an option is not supported
-
getOptions
public java.lang.String[] getOptions()
Gets the current settings of the Classifier.- Specified by:
getOptionsin interfaceOptionHandler- Overrides:
getOptionsin classAbstractClassifier- Returns:
- an array of strings suitable for passing to setOptions
-
classifiersTipText
public java.lang.String classifiersTipText()
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setClassifiers
public void setClassifiers(Classifier[] classifiers)
Sets the list of possible classifers to choose from.- Parameters:
classifiers- an array of classifiers with all options set.
-
getClassifiers
public Classifier[] getClassifiers()
Gets the list of possible classifers to choose from.- Returns:
- the array of Classifiers
-
getClassifier
public Classifier getClassifier(int index)
Gets a single classifier from the set of available classifiers.- Parameters:
index- the index of the classifier wanted- Returns:
- the Classifier
-
getCapabilities
public Capabilities getCapabilities()
Returns combined capabilities of the base classifiers, i.e., the capabilities all of them have in common.- Specified by:
getCapabilitiesin interfaceCapabilitiesHandler- Specified by:
getCapabilitiesin interfaceClassifier- Overrides:
getCapabilitiesin classAbstractClassifier- Returns:
- the capabilities of the base classifiers
- See Also:
Capabilities
-
preExecution
public void preExecution() throws java.lang.ExceptionDescription copied from class:AbstractClassifierPerform any setup stuff that might need to happen before commandline execution. Subclasses should override if they need to do something here- Specified by:
preExecutionin interfaceCommandlineRunnable- Overrides:
preExecutionin classAbstractClassifier- Throws:
java.lang.Exception- if a problem occurs during setup
-
postExecution
public void postExecution() throws java.lang.ExceptionDescription copied from class:AbstractClassifierPerform any teardown stuff that might need to happen after execution. Subclasses should override if they need to do something here- Specified by:
postExecutionin interfaceCommandlineRunnable- Overrides:
postExecutionin classAbstractClassifier- Throws:
java.lang.Exception- if a problem occurs during teardown
-
-