# HG changeset patch # User Thierry Bertin-Mahieux # Date 1213134179 14400 # Node ID 93280a0c151a929daa11936ba59a07f252cef6a2 # Parent 6ead65d30f1eaac26356ca8720e914929e9f5e2f more verbose diff -r 6ead65d30f1e -r 93280a0c151a mlp_factory_approach.py --- a/mlp_factory_approach.py Tue Jun 10 17:16:49 2008 -0400 +++ b/mlp_factory_approach.py Tue Jun 10 17:42:59 2008 -0400 @@ -62,7 +62,10 @@ def update(self, dataset, default_minibatch_size=32): - """Update this model from more training data.""" + """ + Update this model from more training data.Uses all the data once, cut + into minibatches. No early stopper here. + """ params = self.params minibatch_size = min(default_minibatch_size, len(dataset)) for mb in dataset.minibatches(['input', 'target'], minibatch_size=minibatch_size):