Spaces:
Sleeping
Sleeping
John Graham Reynolds
commited on
Commit
·
7cc0573
1
Parent(s):
cd5a29c
make desc more user friendly
Browse files- fixed_precision.py +2 -0
fixed_precision.py
CHANGED
@@ -9,6 +9,8 @@ This class allows one to circumvent the current issue of `combine`-ing the preci
|
|
9 |
\n
|
10 |
In general, the precision is the ratio tp / (tp + fp) where tp is the number of true positives and fp the number of false positives.
|
11 |
The precision is intuitively the ability of the classifier not to label as positive a sample that is negative.
|
|
|
|
|
12 |
"""
|
13 |
|
14 |
_CITATION = """
|
|
|
9 |
\n
|
10 |
In general, the precision is the ratio tp / (tp + fp) where tp is the number of true positives and fp the number of false positives.
|
11 |
The precision is intuitively the ability of the classifier not to label as positive a sample that is negative.
|
12 |
+
|
13 |
+
Play around with the interface below to see how the precision score changes based on predictions, references, and method of averaging!
|
14 |
"""
|
15 |
|
16 |
_CITATION = """
|