bartekkuncer commented on issue #21053:
URL:
https://github.com/apache/incubator-mxnet/issues/21053#issuecomment-1148580155
Here is also an easy way to set random seed for MXNet:
```import mxnet
import random
from mxnet import nd
mxnet.random.seed(random.randint(0, 2**31-1))
for _ in range(3):
print(nd.random.uniform(0, 1).asscalar())
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]