A data scientist constructs a ROC curve for a binary classifier. The curve passes exactly through the point (0.0, 1.0). What does this indicate about the model?
Select an answer to reveal the explanation.
Short Explanation
Here's the deal — b is correct because the point (FPR=0.0, TPR=1.0) on an ROC curve means the model correctly classifies all positives (TPR=1.0) while generating zero false positives (FPR=0.0), which is perfect discrimination (AUC=1.0). A is wrong because AUC=0.5 is the diagonal line, not the point (0,1).
Full Explanation
B is correct because the point (FPR=0.0, TPR=1.0) on an ROC curve means the model correctly classifies all positives (TPR=1.0) while generating zero false positives (FPR=0.0), which is perfect discrimination (AUC=1.0). A is wrong because AUC=0.5 is the diagonal line, not the point (0,1). C is wrong because a model that always predicts negative would have TPR=0. D is wrong because this point is theoretically achievable with a perfect classifier.