ROC-AUC explained
Hello Friends, this is the first post (of multiple posts) for one of the most important classification metrics measurement ROC/AUC. The subsequent post will be hands-on demonstrating ROC/AUC using python and associated libraries.
Let's set the baseline first:
1) Precision is True positive over Predicted positive
2) Recall is True positive over Actual positive (Recall is also referred as True positivity rate OR Sensitivity)
Specificity is True Negative Rate(TNR): True negative over Actual negative
Sensitivity and Specificity are inversely proportional to each other
Good to know:
1. ROC/AUC can be applied to multiclass metrics
2. Sensitivity and Specificity are inversely proportional to each other
3. Recall is the same as TPR(True positivity rate) or Sensitivity
4. AUC = 1(Great model), AUC = 0(Model predicting opposite class)
Will follow up with a hands-on post to generate ROC/AUC curves, see you soon.
Have a great day!
References:
Comments
Post a Comment