Last active
June 15, 2017 14:39
-
-
Save olinguyen/156e0e372f67584ebaa674ab6a1e15e4 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
| import numpy as np | |
| from modshogun import * | |
| roc = ROCEvaluation() | |
| roc.evaluate(y_pred, y_test) | |
| auc = roc.get_auROC() | |
| print(auc) # 0.845606993532 | |
| roc = ROCEvaluation() | |
| roc.evaluate(BinaryLabels(y_pred.get_labels()), BinaryLabels(y_test.get_labels())) | |
| auc = roc.get_auROC() | |
| print(auc) # 0.563780270879 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
get_valuesinstead ofget_labelsfixed the issue -- the AUC both print 0.845.