EasyDeepLearn

How do you interpret an ROC curve, and what point matters?

medium

Answer

  • ROC plots True Positive Rate (sensitivity) vs False Positive Rate (1 - specificity) as the decision threshold sweeps from 1 to 0.
  • The diagonal is random guessing; the top-left corner is perfect.
  • AUC is the area under it — the probability that a random positive is scored higher than a random negative.
  • The 'best' operating point depends on cost: often top-left-most, or the intersection with an iso-cost line matching your FP/FN penalties.
Check yourself — multiple choice
  • ROC plots precision vs recall
  • ROC plots TPR vs FPR; AUC = P(positive score > negative score); operating point depends on costs
  • ROC only applies to regression
  • ROC always requires balanced classes

ROC = TPR vs FPR. AUC = probability positive scored above negative. Operating point = cost-driven.

#metrics#classification

Practise Supervised Learning

215 interview questions in this topic.

Related questions