TruePositiveRate.md (336B)
1 # True Positive Rate (TPR) also known as recall and sensitivity 2 3 ML CH3 4 5 **Definition:** This is the ratio of positive instances that are correctly classified. 6 7 As such, we have the following equation: 8 9 recall = TP / (TP + FN) 10 11 This takes the number of true positives and divides by the sum of all actually positives samples (TP + FN).