“ROC AUC Score” Ответ

roc auc challting

import scikitplot as skplt
import matplotlib.pyplot as plt

y_true = # ground truth labels
y_probas = # predicted probabilities generated by sklearn classifier
skplt.metrics.plot_roc_curve(y_true, y_probas)
plt.show()
Successful Sloth

ROC AUC Score

# Import roc_auc_score
from sklearn.metrics import roc_auc_score

# Calculate roc_auc_score
print(roc_auc_score(y_test, y_pred_probs))
josh.ipynb

Ответы похожие на “ROC AUC Score”

Вопросы похожие на “ROC AUC Score”

Смотреть популярные ответы по языку

Смотреть другие языки программирования