Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Minseok Bae
commited on
Commit
•
5bcc476
1
Parent(s):
1f26f6c
Modified about.py so that it displays (%) in columns.
Browse files- src/display/about.py +3 -3
src/display/about.py
CHANGED
@@ -11,9 +11,9 @@ class Task:
|
|
11 |
class Tasks(Enum):
|
12 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
13 |
hallucination_rate = Task("hallucination_rate",
|
14 |
-
"hallucination_rate", "Hallucination Rate")
|
15 |
-
|
16 |
-
answer_rate = Task("answer_rate", "answer_rate", "Answer Rate")
|
17 |
average_summary_length = Task("average_summary_length",
|
18 |
"average_summary_length", "Average Summary Length")
|
19 |
|
|
|
11 |
class Tasks(Enum):
|
12 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
13 |
hallucination_rate = Task("hallucination_rate",
|
14 |
+
"hallucination_rate", "Hallucination Rate (%)")
|
15 |
+
factual_consistency_rate = Task("factual_consistency_rate", "factual_consistency_rate", "Factual Consistency Rate (%)")
|
16 |
+
answer_rate = Task("answer_rate", "answer_rate", "Answer Rate (%)")
|
17 |
average_summary_length = Task("average_summary_length",
|
18 |
"average_summary_length", "Average Summary Length")
|
19 |
|