Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/populate.py
Browse files- src/populate.py +1 -1
src/populate.py
CHANGED
@@ -24,7 +24,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
24 |
|
25 |
# γΉγ³γ’εγ100γ§ε²γγ.4fε½’εΌγ§γγ©γΌγγγ
|
26 |
df[existing_score_cols] = (df[existing_score_cols] / 100).applymap(lambda x: f'{x:.4f}')
|
27 |
-
df = df.sort_values(by=[AutoEvalColumn.
|
28 |
df = df[cols].round(decimals=2)
|
29 |
|
30 |
# filter out if any of the benchmarks have not been produced
|
|
|
24 |
|
25 |
# γΉγ³γ’εγ100γ§ε²γγ.4fε½’εΌγ§γγ©γΌγγγ
|
26 |
df[existing_score_cols] = (df[existing_score_cols] / 100).applymap(lambda x: f'{x:.4f}')
|
27 |
+
df = df.sort_values(by=[AutoEvalColumn.AVG.name], ascending=False)
|
28 |
df = df[cols].round(decimals=2)
|
29 |
|
30 |
# filter out if any of the benchmarks have not been produced
|