Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/leaderboard/read_evals.py
Browse files
src/leaderboard/read_evals.py
CHANGED
@@ -131,7 +131,9 @@ class EvalResult:
|
|
131 |
# data_dict[task_value.col_name] = self.results.get(task_value.benchmark, None)
|
132 |
for task in Tasks:
|
133 |
task_value = task.value
|
|
|
134 |
value = self.results.get(task_value.benchmark)
|
|
|
135 |
data_dict[task_value.col_name] = Decimal(value)
|
136 |
|
137 |
print(f"Debug: Returned dictionary from to_dict: {data_dict}")
|
|
|
131 |
# data_dict[task_value.col_name] = self.results.get(task_value.benchmark, None)
|
132 |
for task in Tasks:
|
133 |
task_value = task.value
|
134 |
+
print("task_value.benchmark:", task_value.benchmark)
|
135 |
value = self.results.get(task_value.benchmark)
|
136 |
+
print("value:", value)
|
137 |
data_dict[task_value.col_name] = Decimal(value)
|
138 |
|
139 |
print(f"Debug: Returned dictionary from to_dict: {data_dict}")
|