Spaces:
Build error
Build error
root
commited on
Commit
·
4b255b3
1
Parent(s):
442a67f
[fix] 504 vbench2 taskinfo
Browse files
app.py
CHANGED
@@ -502,7 +502,7 @@ def get_all_df2(dir=VBENCH2_DIR):
|
|
502 |
submission_repo.git_pull()
|
503 |
df = pd.read_csv(dir)
|
504 |
df = get_final_score2(df, TASK_INFO_2)
|
505 |
-
df = df.sort_values(by="
|
506 |
return df
|
507 |
|
508 |
|
|
|
502 |
submission_repo.git_pull()
|
503 |
df = pd.read_csv(dir)
|
504 |
df = get_final_score2(df, TASK_INFO_2)
|
505 |
+
df = df.sort_values(by="Total Score", ascending=False)
|
506 |
return df
|
507 |
|
508 |
|