Fix round
Browse files
app.py
CHANGED
@@ -49,7 +49,8 @@ def get_leaderboard_df(merge_values: bool = True):
|
|
49 |
value = data["results"][first_result_key]["acc_norm"]
|
50 |
# BBH has several metrics but we report just the average one
|
51 |
elif task.lower() == "bbh":
|
52 |
-
|
|
|
53 |
# AGIEval reports acc_norm
|
54 |
elif task.lower() == "agieval":
|
55 |
value = data["results"]["all"]["acc_norm"]
|
|
|
49 |
value = data["results"][first_result_key]["acc_norm"]
|
50 |
# BBH has several metrics but we report just the average one
|
51 |
elif task.lower() == "bbh":
|
52 |
+
if "all" in data["results"]:
|
53 |
+
value = data["results"]["all"]["acc"]
|
54 |
# AGIEval reports acc_norm
|
55 |
elif task.lower() == "agieval":
|
56 |
value = data["results"]["all"]["acc_norm"]
|