python 中打乱顺序模块

同步打乱两个numpy array的顺序

1
2
3
4
state = np.random.get_state()
np.random.shuffle(X)
np.random.set_state(state)
np.random.shuffle(Y)

我建议每个epoch 结束后打乱顺序,防止过拟合。