# HG changeset patch # User Frederic Bastien # Date 1373651205 14400 # Node ID 08b3e827575a45df1126a6c0ef7cb6a34e22c2c4 # Parent 9737834dcb0f2cdd3731f7e31ab59c25160aa8f5 Change class path as Theano want to hide the Deprecated Module interface. diff -r 9737834dcb0f -r 08b3e827575a pylearn/sandbox/scan_inputs_groups.py --- a/pylearn/sandbox/scan_inputs_groups.py Mon Mar 11 16:56:54 2013 -0400 +++ b/pylearn/sandbox/scan_inputs_groups.py Fri Jul 12 13:46:45 2013 -0400 @@ -388,7 +388,7 @@ and the index list with some positive values changed to negative values (groups masking)""" def __init__(self, seed = 1): self.M=theano.Module() - self.M.rand = T.RandomStreams(seed) + self.M.rand = T.randomstreams.RandomStreams(seed) self.seed = seed mat = T.matrix('mat') noise_level_bit = T.dscalar('noise_level_bit')