From 3d81d904a9ec8ede34ffa306e93aa8bea2888a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=9F=8E=E9=93=AD?= Date: Thu, 6 Mar 2025 10:54:55 +0800 Subject: [PATCH] =?UTF-8?q?Update=2082.k=E6=9C=80=E8=BF=91=E9=82=BB?= =?UTF-8?q?=E7=AE=97=E6=B3=95.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...6\234\200\350\277\221\351\202\273\347\256\227\346\263\225.md" | 1 + 1 file changed, 1 insertion(+) diff --git "a/Day81-90/82.k\346\234\200\350\277\221\351\202\273\347\256\227\346\263\225.md" "b/Day81-90/82.k\346\234\200\350\277\221\351\202\273\347\256\227\346\263\225.md" index 4e865b669..beace8e94 100644 --- "a/Day81-90/82.k\346\234\200\350\277\221\351\202\273\347\256\227\346\263\225.md" +++ "b/Day81-90/82.k\346\234\200\350\277\221\351\202\273\347\256\227\346\263\225.md" @@ -258,6 +258,7 @@ $$ 上面的例子,模型预测的精确率为: $\frac{80}{80 + 30} = \frac{80}{110} = 0.73$ 。 3. **召回率**(Recall)。召回率用于衡量在所有实际为正类的样本中,被模型正确预测为正类的比例,通常也被称为查全率或真正例率(True Positive Rate)。 + $$ \text{Recall} = \frac{\text{TP}}{\text{TP} + \text{FN}} $$