Spaces:
Sleeping
Sleeping
John Graham Reynolds
commited on
Commit
·
217c1b8
1
Parent(s):
7269451
made desc more user friendly
Browse files- app.py +2 -0
- fixed_recall.py +1 -1
app.py
CHANGED
@@ -23,6 +23,8 @@ recall.compute()
|
|
23 |
|
24 |
where the `average` parameter can be chosen to configure the way recall scores across labels are averaged. Acceptable values include `[None, 'micro', 'macro', 'weighted']` (
|
25 |
or `binary` if there exist only two labels). \n
|
|
|
|
|
26 |
"""
|
27 |
|
28 |
metric = FixedRecall()
|
|
|
23 |
|
24 |
where the `average` parameter can be chosen to configure the way recall scores across labels are averaged. Acceptable values include `[None, 'micro', 'macro', 'weighted']` (
|
25 |
or `binary` if there exist only two labels). \n
|
26 |
+
|
27 |
+
Play around with the interface below to see how the recall score changes based on predictions, references, and method of averaging!
|
28 |
"""
|
29 |
|
30 |
metric = FixedRecall()
|
fixed_recall.py
CHANGED
@@ -12,7 +12,7 @@ The recall is intuitively the ability of the classifier to find all the positive
|
|
12 |
"""
|
13 |
|
14 |
_CITATION = """
|
15 |
-
@online{
|
16 |
author = {John Graham Reynolds aka @MarioBarbeque},
|
17 |
title = {{Fixed Recall Hugging Face Metric},
|
18 |
year = 2024,
|
|
|
12 |
"""
|
13 |
|
14 |
_CITATION = """
|
15 |
+
@online{MarioBbqRec,
|
16 |
author = {John Graham Reynolds aka @MarioBarbeque},
|
17 |
title = {{Fixed Recall Hugging Face Metric},
|
18 |
year = 2024,
|