Skip to content

Instantly share code, notes, and snippets.

@grohith327
Created May 12, 2018 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grohith327/cd7b793c4a1d0e78c2922df23e1141bd to your computer and use it in GitHub Desktop.
Save grohith327/cd7b793c4a1d0e78c2922df23e1141bd to your computer and use it in GitHub Desktop.
print("Accuracy of Linear Regerssion Model:",clf_lr.score(x_test,y_test))
print("Accuracy of SVM-RBF Model:",clf_svr.score(x_test,y_test))
print("Accuracy of Random Forest Model:",clf_rf.score(x_test,y_test))
print("Accuracy of Gradient Boosting Model:",clf_gb.score(x_test,y_test))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment