import sklearn
import numpy as np
X = np.array([[1, 2], [3, 4], [5, 6]])
Y = np.array([[1], [2], [3]])
print(X)
print(Y)
'''
[[1 2]
[3 4]
[5 6]]
[[1]
[2]
[3]]
'''
X, Y = sklearn.utils.shuffle(X, Y)
print(X)
print(Y)
'''
[[3 4]
[5 6]
[1 2]]
[[2]
[3]
[1]]
'''
10-18
863

09-19
1011

11-30
378

03-25