We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0f472 commit 2eb32d0Copy full SHA for 2eb32d0
code/rnnrbm.py
@@ -18,7 +18,8 @@
18
import theano.tensor as T
19
from theano.tensor.shared_randomstreams import RandomStreams
20
21
-numpy.random.seed(0xdeadbeef)
+#Don't use a python long as this don't work on 32 bits computers.
22
+numpy.random.seed(0xbeef)
23
rng = RandomStreams(seed=numpy.random.randint(1 << 30))
24
theano.config.warn.subtensor_merge_bug = False
25
0 commit comments