from numpy as np index=np.arange(2000) np.random.shuffle(index) ... np.random.seed(1024) random.shuffle(index) data = data[index] label ...
確定! 回上一頁