简体   繁体   中英

Does PyTorch have a RandomState-like object for random number generation?

in numpy i can

import numpy as np

rs = np.random.RandomState(seed=0)

and then pass that object around, eg for dependency injection.

Does PyTorch have a similar interface? I can't find anything in the docs, but maybe i'm missing something.

The closest thing would be torch.manual_seed , which sets the seed for generating random numbers and returns a torch.Generator . This thread here has more information, apparently there may be some inconsistencies depending on whether you are using GPU or a CPU.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM