AUC
This is correct. The ROC curve is a curve that plots true positive rate (TPR, y-axis) and false positive rate (FPR, x-axis) as the classification threshold is varied. TPR is the proportion of actual positives that were correctly identified as positive, and FPR is the proportion of actual negatives that were incorrectly identified as positive. AUC (Area Under the Curve) is the area under that ROC curve, expressing a model's discrimination performance in a single value independent of the classification threshold. A value close to 1.0 indicates high performance; 0.5 is equivalent to random classification, making it useful for comparing models before a threshold is set.