我一直在使用 numpy 的随机功能,通过调用诸如np.random.choice()
or之类的方法np.random.randint()
。我刚刚发现了创建default_rng
对象或其他Generator
对象的能力:
from numpy.random import default_rng
gen = default_rng()
random_number = gen.integers(10)
到目前为止,我会一直使用
np.random.randint(10)
相反,我想知道这两种方式之间的区别是什么。
我能想到的唯一好处是跟踪多个种子,或者想要使用特定的 PRNG,但也许对于更通用的用例也存在差异?