gblazex commited on
Commit
87114af
1 Parent(s): 7d2993e

Update src/display/about.py

Browse files
Files changed (1) hide show
  1. src/display/about.py +9 -6
src/display/about.py CHANGED
@@ -6,15 +6,18 @@ class Task:
6
  benchmark: str
7
  metric: str
8
  col_name: str
9
-
10
-
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("task_name1", "metric_name", "First task")
15
- task1 = Task("task_name2", "metric_name", "Second task")
16
-
17
-
 
 
 
 
18
  # Your leaderboard name
19
  TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
20
 
 
6
  benchmark: str
7
  metric: str
8
  col_name: str
9
+
 
10
  # Init: to update with your specific keys
11
  class Tasks(Enum):
12
  # task_key in the json file, metric_key in the json file, name to display in the leaderboard
13
+ arc = Task("arc:challenge", "acc_norm", "ARC")
14
+ hellaswag = Task("hellaswag", "acc_norm", "HellaSwag")
15
+ mmlu = Task("hendrycksTest", "acc", "MMLU")
16
+ truthfulqa = Task("truthfulqa:mc", "mc2", "TruthfulQA")
17
+ winogrande = Task("winogrande", "acc", "Winogrande")
18
+ gsm8k = Task("gsm8k", "acc", "GSM8K")
19
+
20
+
21
  # Your leaderboard name
22
  TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
23