Mercurial > pylearn
changeset 305:93280a0c151a
more verbose
author | Thierry Bertin-Mahieux <bertinmt@iro.umontreal.ca> |
---|---|
date | Tue, 10 Jun 2008 17:42:59 -0400 |
parents | 6ead65d30f1e |
children | 29c5ad01e9ce |
files | mlp_factory_approach.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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):