public interface TrainingObserver
| Modifier and Type | Method and Description |
|---|---|
void |
beginIteration()
Resets internal state to prepare for a new iteration of evaluating
the entire dataset.
|
void |
endIteration()
Any actions that need to be performed after evaluating the dataset.
|
void |
evaluatePrediction(VectorExample e)
Interprets or accumulates prediction result of a single feature vector
Called once for each feature vector in the dataset
|
boolean |
hasIterations() |
boolean |
isPerfectResult() |
void beginIteration()
void evaluatePrediction(VectorExample e)
e - - an example that must have the RLink prediction assigned.void endIteration()
boolean isPerfectResult()
boolean hasIterations()