lfqian commited on
Commit
53e3f9c
·
verified ·
1 Parent(s): 6ba19d2

Update src/populate.py

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -1
src/populate.py CHANGED
@@ -17,7 +17,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
17
  df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False)
18
  df = df[cols].round(decimals=2)
19
 
20
- filter out if any of the benchmarks have not been produced
21
  import os
22
  print(os.getcwd()) # 获取并打印当前工作目录
23
 
 
17
  df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False)
18
  df = df[cols].round(decimals=2)
19
 
20
+ #filter out if any of the benchmarks have not been produced
21
  import os
22
  print(os.getcwd()) # 获取并打印当前工作目录
23