Package weka.classifiers
Interface TestingHelper.TestingUpdateListener
-
- Enclosing class:
- TestingHelper
public static interface TestingHelper.TestingUpdateListener
The interface for objects that listen for testing updates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
testingUpdateRequested(weka.core.Instances data, int numTested, int numTotal)
Gets called when the testing interval reached or all instances processed.
-
-
-
Method Detail
-
testingUpdateRequested
void testingUpdateRequested(weka.core.Instances data, int numTested, int numTotal)
Gets called when the testing interval reached or all instances processed.- Parameters:
data
- the data being used for testingnumTested
- the number instances tested so farnumTotal
- the total number of instances tested
-
-