kunato commited on
Commit
0eda38d
1 Parent(s): b62a627

fix sorting

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -0
src/populate.py CHANGED
@@ -14,6 +14,7 @@ def get_leaderboard_df(results_path: str) -> pd.DataFrame:
14
 
15
  df = pd.DataFrame.from_records(all_data_json)
16
  df = df.round(decimals=2)
 
17
  return raw_data, df
18
 
19
 
 
14
 
15
  df = pd.DataFrame.from_records(all_data_json)
16
  df = df.round(decimals=2)
17
+ df = df.sort_values(by='Average ⬆️', ascending=False)
18
  return raw_data, df
19
 
20