public abstract class ParallelMultipleClassifiersCombiner extends MultipleClassifiersCombiner
| Modifier and Type | Field and Description |
|---|---|
protected int |
m_completed
The number of classifiers completed so far
|
protected java.util.concurrent.ThreadPoolExecutor |
m_executorPool
Pool of threads to train models with
|
protected int |
m_failed
The number of classifiers that experienced a failure of some sort during construction
|
protected int |
m_numExecutionSlots
The number of threads to have executing at any one time
|
m_ClassifiersBATCH_SIZE_DEFAULT, m_BatchSize, m_Debug, m_DoNotCheckCapabilities, m_numDecimalPlaces, NUM_DECIMAL_PLACES_DEFAULT| Constructor and Description |
|---|
ParallelMultipleClassifiersCombiner() |
| Modifier and Type | Method and Description |
|---|---|
void |
buildClassifier(Instances data)
Stump method for building the classifiers
|
protected void |
buildClassifiers(Instances data)
Does the actual construction of the ensemble
|
protected void |
completedClassifier(int iteration,
boolean success)
Records the completion of the training of a single classifier.
|
int |
getNumExecutionSlots()
Get the number of execution slots (threads) to use for building the members of the ensemble.
|
java.lang.String[] |
getOptions()
Gets the current settings of the classifier.
|
java.util.Enumeration<Option> |
listOptions()
Returns an enumeration describing the available options.
|
java.lang.String |
numExecutionSlotsTipText()
Returns the tip text for this property
|
void |
setNumExecutionSlots(int numSlots)
Set the number of execution slots (threads) to use for building the members of the ensemble.
|
void |
setOptions(java.lang.String[] options)
Parses a given list of options.
|
protected void |
startExecutorPool()
Start the pool of execution threads
|
classifiersTipText, getCapabilities, getClassifier, getClassifiers, getClassifierSpec, postExecution, preExecution, setClassifiersbatchSizeTipText, classifyInstance, debugTipText, distributionForInstance, distributionsForInstances, doNotCheckCapabilitiesTipText, forName, getBatchSize, getDebug, getDoNotCheckCapabilities, getNumDecimalPlaces, getRevision, implementsMoreEfficientBatchPrediction, makeCopies, makeCopy, numDecimalPlacesTipText, run, runClassifier, setBatchSize, setDebug, setDoNotCheckCapabilities, setNumDecimalPlacesprotected int m_numExecutionSlots
protected transient java.util.concurrent.ThreadPoolExecutor m_executorPool
protected int m_completed
protected int m_failed
public java.util.Enumeration<Option> listOptions()
listOptions in interface OptionHandlerlistOptions in class MultipleClassifiersCombinerpublic void setOptions(java.lang.String[] options)
throws java.lang.Exception
-Z num
Set the number of execution slots to use (default 1 - i.e. no parallelism).
Options after -- are passed to the designated classifier.
setOptions in interface OptionHandlersetOptions in class MultipleClassifiersCombineroptions - the list of options as an array of stringsjava.lang.Exception - if an option is not supportedpublic java.lang.String[] getOptions()
getOptions in interface OptionHandlergetOptions in class MultipleClassifiersCombinerpublic void setNumExecutionSlots(int numSlots)
numSlots - the number of slots to use.public int getNumExecutionSlots()
public java.lang.String numExecutionSlotsTipText()
public void buildClassifier(Instances data) throws java.lang.Exception
data - the training data to be used for generating the ensemblejava.lang.Exception - if the classifier could not be built successfullyprotected void startExecutorPool()
protected void buildClassifiers(Instances data) throws java.lang.Exception
java.lang.Exception - if something goes wrong during the training processprotected void completedClassifier(int iteration,
boolean success)
iteration - the iteration that has completedsuccess - whether the classifier trained successfully