Created
February 17, 2019 16:22
-
-
Save gabrielziegler3/911ae8923862ad41e98a3bd4e1a342cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.metrics import classification_report | |
bst = xgb.train(params, dtrain) | |
pred = bst.predict(dtest) | |
print(classification_report(y_test, pred)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment