Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # final model
  2. predict = best_model.predict(X_test)
  3. print(accuracy_score(y_test, predict))
  4. print(confusion_matrix(y_test,predict))
  5. print(classification_report(y_test,predict))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement