Package adams.data.weka.columnfinder
Class MultiColumnFinder
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.weka.columnfinder.AbstractColumnFinder
-
- adams.data.weka.columnfinder.AbstractTrainableColumnFinder
-
- adams.data.weka.columnfinder.MultiColumnFinder
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.ShallowCopySupporter<ColumnFinder>
,adams.core.SizeOfHandler
,ColumnFinder
,TrainableColumnFinder
,Serializable
public class MultiColumnFinder extends AbstractTrainableColumnFinder
Applies multiple column finding algorithms to the data.
The indices can be either joined or intersected.
Valid options are:
-D <int> (property: debugLevel) The greater the number the more additional info the scheme may output to the console (0 = off). default: 0 minimum: 0
-finder <adams.data.weka.columnfinder.ColumnFinder> [-finder ...] (property: finders) The column finders to use. default:
-combination <JOIN|INTERSECT> (property: combination) Defines how the indices are combined. default: JOIN
- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MultiColumnFinder.Combination
How combine the indices.
-
Field Summary
Fields Modifier and Type Field Description protected MultiColumnFinder.Combination
m_Combination
how the indices are combined.protected ColumnFinder[]
m_Finders
the column finders to use.-
Fields inherited from class adams.data.weka.columnfinder.AbstractTrainableColumnFinder
m_Trained
-
-
Constructor Summary
Constructors Constructor Description MultiColumnFinder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
combinationTipText()
Returns the tip text for this property.void
defineOptions()
Adds options to the internal list of options.protected int[]
doFindColumns(weka.core.Instances data)
Returns the columns of interest in the dataset.protected boolean
doTrainColumnFinder(weka.core.Instances data)
Performs the actual training of the column finder with the specified dataset.String
findersTipText()
Returns the tip text for this property.MultiColumnFinder.Combination
getCombination()
Returns how the indices are combined.ColumnFinder[]
getFinders()
Returns the column finders in use.String
globalInfo()
Returns a string describing the object.void
setCombination(MultiColumnFinder.Combination value)
Sets how the indices are combined.void
setFinders(ColumnFinder[] value)
Sets the column finders to use.-
Methods inherited from class adams.data.weka.columnfinder.AbstractTrainableColumnFinder
check, isColumnFinderTrained, reset, trainColumnFinder
-
Methods inherited from class adams.data.weka.columnfinder.AbstractColumnFinder
arrayToHashSet, compareTo, equals, findColumns, forCommandLine, forName, getColumnFinders, shallowCopy, shallowCopy
-
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, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.data.weka.columnfinder.ColumnFinder
findColumns
-
-
-
-
Field Detail
-
m_Finders
protected ColumnFinder[] m_Finders
the column finders to use.
-
m_Combination
protected MultiColumnFinder.Combination m_Combination
how the indices are combined.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in 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:
defineOptions
in interfaceadams.core.option.OptionHandler
- Overrides:
defineOptions
in classadams.core.option.AbstractOptionHandler
-
setFinders
public void setFinders(ColumnFinder[] value)
Sets the column finders to use.- Parameters:
value
- the column finders
-
getFinders
public ColumnFinder[] getFinders()
Returns the column finders in use.- Returns:
- the column finders
-
findersTipText
public String findersTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setCombination
public void setCombination(MultiColumnFinder.Combination value)
Sets how the indices are combined.- Parameters:
value
- the combination type
-
getCombination
public MultiColumnFinder.Combination getCombination()
Returns how the indices are combined.- Returns:
- the combination type
-
combinationTipText
public String combinationTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
doTrainColumnFinder
protected boolean doTrainColumnFinder(weka.core.Instances data)
Performs the actual training of the column finder with the specified dataset.- Specified by:
doTrainColumnFinder
in classAbstractTrainableColumnFinder
- Parameters:
data
- the training data- Returns:
- true if successfully trained
-
doFindColumns
protected int[] doFindColumns(weka.core.Instances data)
Returns the columns of interest in the dataset.- Specified by:
doFindColumns
in classAbstractColumnFinder
- Parameters:
data
- the dataset to inspect- Returns:
- the columns of interest
-
-