Advertisement
rodolpheg

Untitled

Nov 23rd, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from sklearn.metrics import classification_report,confusion_matrix
  2. predictions = np.argmax(model.predict(x_test), axis=1)
  3. print(classification_report(y_test,predictions))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement