From 6c71431a0292b1968b2cdc7227f6a14adcda5244 Mon Sep 17 00:00:00 2001 From: Henri Bonamy Date: Mon, 5 May 2025 19:45:30 +0200 Subject: [PATCH] Added reference to PrecisionRecallDisplay in average_precision_score's See Also --- sklearn/metrics/_ranking.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sklearn/metrics/_ranking.py b/sklearn/metrics/_ranking.py index 560fd81076914..eb54f873d79e9 100644 --- a/sklearn/metrics/_ranking.py +++ b/sklearn/metrics/_ranking.py @@ -183,6 +183,7 @@ def average_precision_score( roc_auc_score : Compute the area under the ROC curve. precision_recall_curve : Compute precision-recall pairs for different probability thresholds. + PrecisionRecallDisplay : Used to visualize the precision recall curve. Notes -----