What is a threshold in a Precision-Recall curve?
ROC Curves: x-axis: False Positive Rate FPR = FP /(FP + TN) = FP / N y-axis: True Positive Rate TPR = Recall = TP /(TP + FN) = TP / P Precision-Recall Curves: x-axis: Recall = TP / (TP + FN) = TP / P = TPR y-axis: Precision = TP / (TP + … Read more