Sklearn ROC AUC
Python
How to calculate the ROC_AUC score using Sklearn.
1| from sklearn.metrics import roc_auc_score 2| 3| roc_auc = roc_auc_score(y_test, y_pred)
149
132
127
119