无私母鸡

文章
6
资源
0
加入时间
2年10月24天

numpy.random.permutation

文档参数:整数 则随机打乱np.arange(x)数组 复制一份并且使用shuffle随机打乱返回值:ndarrayIn [1]: import numpy as npIn [2]: np.random.permutation(10)Out[2]: array([0, 8, 9, 5, 2, 1, 4, 3, 7, 6])In [3]: np.random.permuta...