[email protected] commited on
Commit
2c9911b
·
1 Parent(s): 7a1278d
Files changed (1) hide show
  1. src/populate.py +1 -1
src/populate.py CHANGED
@@ -21,7 +21,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
21
  df = df[cols].round(decimals=2)
22
 
23
  # filter out if any of the benchmarks have not been produced
24
- df = df[has_no_nan_values(df, benchmark_cols)]
25
  return df
26
 
27
 
 
21
  df = df[cols].round(decimals=2)
22
 
23
  # filter out if any of the benchmarks have not been produced
24
+ # df = df[has_no_nan_values(df, benchmark_cols)]
25
  return df
26
 
27