Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Gregor Betz
commited on
title
Browse files- src/display/about.py +2 -8
src/display/about.py
CHANGED
@@ -12,13 +12,7 @@ class Task:
|
|
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("logiqa", "delta_abs", "LogiQA Δ")
|
15 |
-
|
16 |
-
#task2 = Task("logiqa", "acc_base", "LogiQA Acc")
|
17 |
-
#task3 = Task("logiqa", "acc_cot", "LogiQA AccCoT")
|
18 |
-
task4 = Task("logiqa2", "delta_abs", "LogiQA2 Δ")
|
19 |
-
#task5 = Task("logiqa2", "delta_rel", "LogiQA2 Δ%")
|
20 |
-
#task6 = Task("logiqa2", "acc_base", "LogiQA2 Acc")
|
21 |
-
#task7 = Task("logiqa2", "acc_cot", "LogiQA2 AccCoT")
|
22 |
|
23 |
#METRICS = list(set([task.value.metric for task in Tasks]))
|
24 |
|
@@ -27,7 +21,7 @@ class Tasks(Enum):
|
|
27 |
|
28 |
|
29 |
# Your leaderboard name
|
30 |
-
TITLE = """<h1 align="center" id="space-title">
|
31 |
|
32 |
# What does your leaderboard evaluate?
|
33 |
INTRODUCTION_TEXT = """
|
|
|
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("logiqa", "delta_abs", "LogiQA Δ")
|
15 |
+
task1 = Task("logiqa2", "delta_abs", "LogiQA2 Δ")
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
#METRICS = list(set([task.value.metric for task in Tasks]))
|
18 |
|
|
|
21 |
|
22 |
|
23 |
# Your leaderboard name
|
24 |
+
TITLE = """<h1 align="center" id="space-title">Open CoT Leaderboard</h1>"""
|
25 |
|
26 |
# What does your leaderboard evaluate?
|
27 |
INTRODUCTION_TEXT = """
|