added all the metrics
Browse files- src/display/about.py +6 -3
src/display/about.py
CHANGED
|
@@ -11,9 +11,12 @@ class Task:
|
|
| 11 |
# Init: to update with your specific keys
|
| 12 |
class Tasks(Enum):
|
| 13 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
| 14 |
-
task0 = Task("
|
| 15 |
-
task1 = Task("
|
| 16 |
-
task2 = Task("
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
# Your leaderboard name
|
|
|
|
| 11 |
# Init: to update with your specific keys
|
| 12 |
class Tasks(Enum):
|
| 13 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
| 14 |
+
task0 = Task("MMLU", "metric_name", "MMLU")
|
| 15 |
+
task1 = Task("Human Eval", "metric_name", "Human Eval")
|
| 16 |
+
task2 = Task("ARC", "metric_name", "ARC")
|
| 17 |
+
task3 = Task("HellaSwag", "metric_name", "HellaSwag")
|
| 18 |
+
task4 = Task("GSM8K", "metric_name", "GSM8K")
|
| 19 |
+
task5 = Task("Winogrande", "metric_name", "Winogrande")
|
| 20 |
|
| 21 |
|
| 22 |
# Your leaderboard name
|