Mercurial > pylearn
diff algorithms/daa.py @ 482:b15dad843c8c
bugfix
author | Olivier Breuleux <breuleuo@iro.umontreal.ca> |
---|---|
date | Tue, 28 Oct 2008 00:23:13 -0400 |
parents | 8fcd0f3d9a17 |
children | e8c37244b54f |
line wrap: on
line diff
--- a/algorithms/daa.py Mon Oct 27 17:26:00 2008 -0400 +++ b/algorithms/daa.py Tue Oct 28 00:23:13 2008 -0400 @@ -110,7 +110,7 @@ obj.b1 = N.zeros(hidden_size) obj.b2 = N.zeros(input_size) if seed is not None: - self.seed(seed) + obj.seed(seed) obj.__hide__ = ['params'] def build_regularization(self):