I read the source code of Deep Learning by using Python.(Yusuke Sugomori DBN).
I could not understand the meaning of
numpy_rng = numpy.random.RandomState(1234). when I type:
>>> import numpy
>>> a = numpy.random.RandomState(1234)
>>> a
it shows <mtrand.RandomState object at 0x100412150>
Is is right? What meaning is this? Any idea , thanks!!