Mercurial > pylearn
diff denoising_aa.py @ 211:bd728c83faff
in __get__, problem if the i.stop was None, i being the slice, added one line replacing None by the len(self)
author | Thierry Bertin-Mahieux <bertinmt@iro.umontreal.ca> |
---|---|
date | Wed, 21 May 2008 17:39:30 -0400 |
parents | ffd50efefb70 |
children | df3fae88ab46 |
line wrap: on
line diff
--- a/denoising_aa.py Sat May 17 00:01:47 2008 -0400 +++ b/denoising_aa.py Wed May 21 17:39:30 2008 -0400 @@ -104,6 +104,7 @@ def __call__(self, training_set=None): model = DenoisingAutoEncoderModel(self) if training_set: + print 'what do I do if training set????' def compile(self, inputs, outputs): return theano.function(inputs,outputs,unpack_single=False,linker=self.linker) @@ -118,6 +119,7 @@ def update(self, training_set, train_stats_collector=None): + print 'dont update you crazy frog!' # old stuff