Package adams.data.weka.rowfinder
Interface TrainableRowFinder
-
- All Superinterfaces:
Destroyable,OptionHandler,RowFinder
- All Known Implementing Classes:
AbstractFilteredRowFinder,AbstractTrainableRowFinder,FilteredIQR,Invert,MultiRowFinder
public interface TrainableRowFinder extends RowFinder
Interface forRowFinderalgorithms that can be trained.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisRowFinderTrained()Checks whether the row finder has been trained.booleantrainRowFinder(weka.core.Instances data)Trains the row finder with the specified dataset.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
trainRowFinder
boolean trainRowFinder(weka.core.Instances data)
Trains the row finder with the specified dataset.- Parameters:
data- the training data- Returns:
- true if successfully trained
-
isRowFinderTrained
boolean isRowFinderTrained()
Checks whether the row finder has been trained.- Returns:
- true if the row finder has been trained already
-
-