Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Gregor Betz
commited on
Commit
•
2d9b08c
1
Parent(s):
490fdac
wip
Browse files- src/display/about.py +2 -9
- src/envs.py +2 -5
src/display/about.py
CHANGED
@@ -13,15 +13,8 @@ class Task:
|
|
13 |
# Init: to update with your specific keys
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
-
task0 = Task("
|
17 |
-
task1 = Task("
|
18 |
-
|
19 |
-
|
20 |
-
# Init: to update with your specific keys
|
21 |
-
#class Tasks(Enum):
|
22 |
-
# # task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
23 |
-
# task0 = Task("logiqa", "delta_abs", "LogiQA Δ")
|
24 |
-
# task1 = Task("logiqa2", "delta_abs", "LogiQA2 Δ")
|
25 |
|
26 |
#METRICS = list(set([task.value.metric for task in Tasks]))
|
27 |
|
|
|
13 |
# Init: to update with your specific keys
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
+
task0 = Task("logiqa", "delta_abs", "LogiQA Δ")
|
17 |
+
task1 = Task("logiqa2", "delta_abs", "LogiQA2 Δ")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
#METRICS = list(set([task.value.metric for task in Tasks]))
|
20 |
|
src/envs.py
CHANGED
@@ -7,11 +7,8 @@ TOKEN = os.environ.get("TOKEN", None)
|
|
7 |
|
8 |
OWNER = "logikon"
|
9 |
REPO_ID = f"{OWNER}/open_cot_leaderboard"
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
QUEUE_REPO = "demo-leaderboard/requests"
|
14 |
-
RESULTS_REPO = "demo-leaderboard/results"
|
15 |
|
16 |
|
17 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|
|
|
7 |
|
8 |
OWNER = "logikon"
|
9 |
REPO_ID = f"{OWNER}/open_cot_leaderboard"
|
10 |
+
QUEUE_REPO = f"{OWNER}/cot-leaderboard-requests"
|
11 |
+
RESULTS_REPO = f"{OWNER}/cot-leaderboard-results"
|
|
|
|
|
|
|
12 |
|
13 |
|
14 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|