本文主要介绍使用numpy产生随机数的一些方法
import numpy as np
# 产生维度为(d0, d1, ..., dn)的矩阵,数据范围为[0, 1),均匀分布
np.random.rand(d0, d1, ..., dn)
# 产生一个[0, 1)的数,不是ndarray,例如:0.161983476352082
np.random.rand()
import numpy as np
# 产生维度为(d0, d1, ..., dn)的矩阵,每一个数据是从标准正态分布中采样得到
np.random.randn(d0, d1, ..., dn)
# 从标准正态分布中采样得到一个数,不是ndarray,例如:-0.7718524487451033
np.random.randn()
import numpy as np
# 从[0, a)中有放回的等概率的取b个数(是否放回以及采样的概率可以设置)
# 注意返回值为ndarray,即使只采一个数的时候也是ndarray
np.random.choice(a, b)
import numpy as np
# 从[low, high)的区间内,等概率的返回size大小的ndarray
# 注意返回值为ndarray,即使只采一个数的时候也是ndarray
np.random.randint(low, high, size)