📜  roc auc score plotting - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:41.300000             🧑  作者: Mango

代码示例1
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()