Class MultiBatch
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.ml.preprocessing.AbstractFilter
-
- adams.ml.preprocessing.AbstractBatchFilter
-
- adams.ml.preprocessing.unsupervised.MultiBatch
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,CapabilitiesHandler,BatchFilter,Filter,Serializable
public class MultiBatch extends AbstractBatchFilter
Applies the specified filters sequentially.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-filter <adams.ml.preprocessing.StreamFilter> [-filter ...] (property: filters) The filters to apply sequentially. default: adams.ml.preprocessing.unsupervised.PassThrough
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StreamFilter[]m_Filtersthe filters to apply.-
Fields inherited from class adams.ml.preprocessing.AbstractFilter
m_Initialized, m_OutputFormat
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description MultiBatch()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.protected DatasetdoFilter(Dataset data)Filters the dataset coming through.protected voiddoInitFilter(Dataset data)Filter-specific initialization.StringfiltersTipText()Returns the tip text for this property.CapabilitiesgetCapabilities()Returns the capabilities.StreamFilter[]getFilters()Returns the filters to apply.StringglobalInfo()Returns a string describing the object.protected DatasetinitOutputFormat(Dataset data)Initializes the output format.voidsetFilters(StreamFilter[] value)Sets the filters to apply.-
Methods inherited from class adams.ml.preprocessing.AbstractBatchFilter
filter, initFilter, postInitFilter, preInitFilter
-
Methods inherited from class adams.ml.preprocessing.AbstractFilter
appendData, appendHeader, getOutputFormat, isInitialized, reset
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.ml.preprocessing.Filter
getOutputFormat, isInitialized
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_Filters
protected StreamFilter[] m_Filters
the filters to apply.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceGlobalInfoSupporter- Specified by:
globalInfoin classAbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setFilters
public void setFilters(StreamFilter[] value)
Sets the filters to apply.- Parameters:
value- the filters
-
getFilters
public StreamFilter[] getFilters()
Returns the filters to apply.- Returns:
- the filters
-
filtersTipText
public String filtersTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getCapabilities
public Capabilities getCapabilities()
Returns the capabilities.- Returns:
- the capabilities
-
doInitFilter
protected void doInitFilter(Dataset data) throws Exception
Filter-specific initialization.- Specified by:
doInitFilterin classAbstractBatchFilter- Parameters:
data- the data to initialize with- Throws:
Exception- if initialization fails
-
initOutputFormat
protected Dataset initOutputFormat(Dataset data) throws Exception
Initializes the output format.- Specified by:
initOutputFormatin classAbstractBatchFilter- Parameters:
data- the output format- Throws:
Exception- if initialization fails
-
-