混合数据重新排序

indices = np.random.permutation(np.arange(data_len))
x_shuffle = x[indices]
y_shuffle = y[indices]

你可能感兴趣的:(混合数据重新排序)