python對隨機森林分類結果繪製roc曲線

上圖: 附上代碼:一個函數,傳入三個參數 .....傳入參數,訓練模型,然後: fit = model.fit(x_train, y_training) # ROC y_score = model.fit(x_train, y_training).predict_proba(x_test) # 隨機森林 fpr, tpr, thresholds = roc_curve(y_test, y_sco
相關文章
相關標籤/搜索