sh1gechan commited on
Commit
16355ea
·
verified ·
1 Parent(s): 961ff69

Update src/populate.py

Browse files
Files changed (1) hide show
  1. src/populate.py +0 -2
src/populate.py CHANGED
@@ -24,8 +24,6 @@ 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
- print(df.columns)
28
- print(cols)
29
  df = df[cols].round(decimals=2)
30
 
31
  # 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[cols].round(decimals=2)
28
 
29
  # filter out if any of the benchmarks have not been produced