R

ROC曲線

ROC

A ROC curve is a graphical representation of a model's diagnostic ability across different thresholds.

ROC曲線

The Receiver Operating Characteristic (ROC) curve is a graphical tool used to evaluate the performance of a 二値分類モデル. It illustrates the trade-off between sensitivity (true positive rate) and specificity (1 – 偽陽性率) 様々な閾値設定にわたる。

ROC曲線上の各点は、インスタンスを陽性と陰性に分類するための異なる閾値を表しています。グラフのx軸は偽陽性率(FPR)を示し、y軸は真陽性率(TPR)を示します。完全な分類を行うモデルは、グラフの左上隅に到達し、感度100%と偽陽性率0%を示します。

ROC曲線下面積(AUC) is a key metric derived from the ROC curve. AUC values range from 0 to 1, where a score of 0.5 indicates no discriminative ability (similar to random guessing), and a score of 1.0 indicates perfect classification. Generally, a higher AUC value signifies better モデルのパフォーマンス.

ROC curves are particularly useful in medical diagnostics, credit scoring, and any field where binary decisions are made based on probabilistic outputs. By analyzing the ROC curve, practitioners can choose an 最適閾値 that balances sensitivity and specificity according to the specific context of their application.

コントロール + /