Spaces:
Running
Running
Add description to card metadata
#1
by
julien-c
HF Staff
- opened
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
title: Recall
|
3 |
-
emoji: 🤗
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
@@ -8,10 +8,16 @@ sdk_version: 3.0.2
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
tags:
|
11 |
-
- evaluate
|
12 |
-
- metric
|
13 |
-
|
|
|
|
|
|
|
|
|
14 |
|
|
|
|
|
15 |
# Metric Card for Recall
|
16 |
|
17 |
|
|
|
1 |
---
|
2 |
title: Recall
|
3 |
+
emoji: 🤗
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
tags:
|
11 |
+
- evaluate
|
12 |
+
- metric
|
13 |
+
description: >-
|
14 |
+
Recall is the fraction of the positive examples that were correctly labeled by
|
15 |
+
the model as positive. It can be computed with the equation:
|
16 |
+
|
17 |
+
Recall = TP / (TP + FN)
|
18 |
|
19 |
+
Where TP is the true positives and FN is the false negatives.
|
20 |
+
---
|
21 |
# Metric Card for Recall
|
22 |
|
23 |
|