Эй, я запускаю это для l oop и сталкиваюсь с ошибкой
for j in range(y_hat.shape[0]):
if(np.not_equal(y_hat[j],y[j])):
print(j)
non_match_indexes.append(j)`
<ipython-input-96-b9feb96de0a0> in PLA(w, x, y, maxIter)
9
10 for j in range(y_hat.shape[0]):
---> 11 if(np.not_equal(y_hat[j],y[j])):
12 print(j)
13 non_match_indexes.append(j)
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
Может кто-нибудь, пожалуйста, помогите