Package adams.data.weka.rowfinder
Interface TrainableRowFinder
-
- All Superinterfaces:
adams.core.Destroyable
,adams.core.option.OptionHandler
,RowFinder
- All Known Implementing Classes:
AbstractFilteredRowFinder
,AbstractTrainableRowFinder
,FilteredIQR
,Invert
,MultiRowFinder
public interface TrainableRowFinder extends RowFinder
Interface forRowFinder
algorithms 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 boolean
isRowFinderTrained()
Checks whether the row finder has been trained.boolean
trainRowFinder(weka.core.Instances data)
Trains the row finder with the specified dataset.
-
-
-
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
-
-