基于python绘制ROC曲线

基于python绘制ROC曲线,直接附代码: from sklearn.metrics import roc_curve, auc from sklearn.model_selection import train_test_split ##划分数据集 X_train, X_test, y_train, y_test = train_test_split(X, y, stratify=y, tes
相关文章
相关标签/搜索