Neural Network training with PyBrain won’t converge
After some more digging I found that the example on the PyBrain’s tutorial is completely out of place. When we look at the method signature in the source code we find: def trainUntilConvergence(self, dataset=None, maxEpochs=None, verbose=None, continueEpochs=10, validationProportion=0.25): This means that 25% of the training set is used for validation. Although that is a very … Read more