#include <IterationCondition.h>
Public Member Functions | |
IterationCondition (int allowedIterations) | |
bool | check (int iteration, double error) |
Condition for stopping Neural Network training after a fixed amount of training iterations
IterationCondition::IterationCondition | ( | int | allowedIterations | ) |
Create a new IterationCondition that will allow given amount of iterations
allowedIterations | amount of iterations to allow |
|
virtual |
Control if the last iteration has been met
Inherits:
Control if the condition has been met
iteration | amount of training iterations ran |
error | current error from evaluation |
Implements StopCondition.