In pybrain documentation I found the following documentation for trainUntilConvergence as follow,
trainUntilConvergence(dataset=None, maxEpochs=None, verbose=None, continueEpochs=10, validationProportion=0.25)
Train the module on the dataset until it converges.
Return the module with the parameters that gave the minimal validation error.
If no dataset is given, the dataset passed during Trainer initialization is used. validationProportion is the ratio of the
dataset that is used for the validation dataset.
If maxEpochs is given, at most that many epochs are trained. Each time validation error hits a minimum, try for continueEpochs epochs to find a better one.
But they didn't tell what is continueEpochs
and verbose
parameters do or define? Does one have an idea?