public interface EpochTerminationCondition
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
void |
initialize()
Initialize the epoch termination condition (often a no-op)
|
boolean |
terminate(int epochNum,
double score)
Should the early stopping training terminate at this epoch, based on the calculated score and the epoch number?
Returns true if training should terminated, or false otherwise
|
void initialize()
boolean terminate(int epochNum, double score)
epochNum
- Number of the last completed epoch (starting at 0)score
- Score calculate for this epoch