Class AddCluster
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.transformer.wekaclusterer.AbstractClustererPostProcessor
-
- adams.flow.transformer.wekaclusterer.AbstractClusterMembershipPostProcessor
-
- adams.flow.transformer.wekaclusterer.AddCluster
-
- All Implemented Interfaces:
adams.core.AdditionalInformationHandler,adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.SizeOfHandler,Serializable
public class AddCluster extends AbstractClusterMembershipPostProcessor
Just adds the predicted cluster (or distribution) to the original dataset.
Stored in container under: Clustered dataset
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-output-distribution <boolean> (property: outputDistribution) If enabled, the cluster distribution is output instead of the cluster index. default: false
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanm_OutputDistributionoutput distribution instead of cluster index.static StringPREDICTED_CLUSTERstatic StringPREDICTED_DISTRIBUTION-
Fields inherited from class adams.flow.transformer.wekaclusterer.AbstractClusterMembershipPostProcessor
VALUE_CLUSTERED_DATASET
-
-
Constructor Summary
Constructors Constructor Description AddCluster()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.booleangetOutputDistribution()Returns whether to output the cluster distribution instead of the cluster index.StringglobalInfo()Returns a string describing the object.StringoutputDistributionTipText()Returns the tip text for this property.protected weka.core.InstancesprocessDatasetWithClusterer(weka.core.Instances data, weka.clusterers.Clusterer clusterer)Performs some form of processing on the full dataset.voidsetOutputDistribution(boolean value)Sets whether to output the cluster distribution instead of the cluster index.-
Methods inherited from class adams.flow.transformer.wekaclusterer.AbstractClusterMembershipPostProcessor
check, doPostProcess, getContainerKeys
-
Methods inherited from class adams.flow.transformer.wekaclusterer.AbstractClustererPostProcessor
getAdditionalInformation, postProcess
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
PREDICTED_CLUSTER
public static final String PREDICTED_CLUSTER
- See Also:
- Constant Field Values
-
PREDICTED_DISTRIBUTION
public static final String PREDICTED_DISTRIBUTION
- See Also:
- Constant Field Values
-
m_OutputDistribution
protected boolean m_OutputDistribution
output distribution instead of cluster index.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin classadams.core.option.AbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin classadams.core.option.AbstractOptionHandler
-
setOutputDistribution
public void setOutputDistribution(boolean value)
Sets whether to output the cluster distribution instead of the cluster index.- Parameters:
value- true if to output distribution
-
getOutputDistribution
public boolean getOutputDistribution()
Returns whether to output the cluster distribution instead of the cluster index.- Returns:
- true if to output distribution
-
outputDistributionTipText
public String outputDistributionTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
processDatasetWithClusterer
protected weka.core.Instances processDatasetWithClusterer(weka.core.Instances data, weka.clusterers.Clusterer clusterer)Performs some form of processing on the full dataset.- Specified by:
processDatasetWithClustererin classAbstractClusterMembershipPostProcessor
-
-