de sklearn.metrics importar confusion_matrix pred = model.predict (x_test) pred = np.argmax (pred, exis = 1) y_true = np.argmax (y_test, eixo = 1)

from sklearn.metrics import confusion_matrix
pred = model.predict(X_test)
pred = np.argmax(pred,axis = 1) 
y_true = np.argmax(y_test,axis = 1)
Nervous Narwhal