djstrong commited on
Commit
7f3644a
1 Parent(s): 83a3b43
Files changed (1) hide show
  1. src/populate.py +3 -1
src/populate.py CHANGED
@@ -17,7 +17,9 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
17
  df = df[cols].round(decimals=2)
18
 
19
  # filter out if any of the benchmarks have not been produced
20
- df = df[has_no_nan_values(df, benchmark_cols)]
 
 
21
  return raw_data, df
22
 
23
 
 
17
  df = df[cols].round(decimals=2)
18
 
19
  # filter out if any of the benchmarks have not been produced
20
+ print('X1', df)
21
+ df2 = df[has_no_nan_values(df, benchmark_cols)]
22
+ print('X2', df2)
23
  return raw_data, df
24
 
25