當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python sklearn RocCurveDisplay.from_estimator用法及代碼示例


本文簡要介紹python語言中 sklearn.metrics.RocCurveDisplay.from_estimator 的用法。

用法:

classmethod from_estimator(estimator, X, y, *, sample_weight=None, drop_intermediate=True, response_method='auto', pos_label=None, name=None, ax=None, **kwargs)

從估算器創建 ROC 曲線顯示。

參數

estimator估計器實例

擬合分類器或擬合 Pipeline ,其中最後一個估計器是分類器。

X{類數組,稀疏矩陣},形狀為 (n_samples, n_features)

輸入值。

y形狀類似數組 (n_samples,)

目標值。

sample_weight形狀類似數組 (n_samples,),默認=None

樣本權重。

drop_intermediate布爾,默認=真

是否刪除一些不會出現在繪製的 ROC 曲線上的次優閾值。這對於創建更輕的 ROC 曲線很有用。

response_method{‘predict_proba’, ‘decision_function’, ‘auto’} 默認='自動'

指定是使用predict_proba 還是decision_function 作為目標響應。如果設置為‘auto’,則首先嘗試predict_proba,如果不存在,則接下來嘗試decision_function。

pos_labelstr 或 int,默認 = 無

在計算 roc auc 指標時被認為是正類的類。默認情況下,estimators.classes_[1] 被視為正類。

namestr,默認=無

用於標注的 ROC 曲線的名稱。如果 None ,使用估計器的名稱。

axmatplotlib 軸,默認=無

要繪製的軸對象。如果 None ,則創建一個新的圖形和軸。

**kwargsdict

要傳遞給 matplotlib 的 plot 的關鍵字參數。

返回

displayRocCurveDisplay

ROC 曲線顯示。

例子

>>> import matplotlib.pyplot as plt
>>> from sklearn.datasets import make_classification
>>> from sklearn.metrics import RocCurveDisplay
>>> from sklearn.model_selection import train_test_split
>>> from sklearn.svm import SVC
>>> X, y = make_classification(random_state=0)
>>> X_train, X_test, y_train, y_test = train_test_split(
...     X, y, random_state=0)
>>> clf = SVC(random_state=0).fit(X_train, y_train)
>>> RocCurveDisplay.from_estimator(
...    clf, X_test, y_test)
<...>
>>> plt.show()
sklearn-metrics-RocCurveDisplay-2.png

相關用法


注:本文由純淨天空篩選整理自scikit-learn.org大神的英文原創作品 sklearn.metrics.RocCurveDisplay.from_estimator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。