1.I just try to calculate the distance between two numpy array
data_partial_test = data_test[:2000,:]
test_lable = label_test
((data_train_set - data_partial_test)**2).sum(axis=1)
print(data_partial_test.shape)
print(data_train_set.shape)
2.What should I in order to solve this error?