julien-c HF staff commited on
Commit
809ea5d
·
1 Parent(s): cc4fa6c

Add description to card metadata

Browse files

Precision is the fraction of correctly labeled positive examples out of all of the examples that were labeled as positive. It is computed via the equation:
Precision = TP / (TP + FP)
where TP is the True positives (i.e. the examples correctly labeled as positive) and FP is the False positive examples (i.e. the examples incorrectly labeled as positive).

Files changed (1) hide show
  1. README.md +12 -4
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  title: Precision
3
- emoji: 🤗
4
  colorFrom: blue
5
  colorTo: red
6
  sdk: gradio
@@ -8,10 +8,18 @@ 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 Precision
16
 
17
 
 
1
  ---
2
  title: Precision
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
+ Precision is the fraction of correctly labeled positive examples out of all of
15
+ the examples that were labeled as positive. It is computed via the equation:
16
+
17
+ Precision = TP / (TP + FP)
18
 
19
+ where TP is the True positives (i.e. the examples correctly labeled as
20
+ positive) and FP is the False positive examples (i.e. the examples incorrectly
21
+ labeled as positive).
22
+ ---
23
  # Metric Card for Precision
24
 
25