danielz02 commited on
Commit
13d7618
1 Parent(s): 112bd22

Record final dataframe

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -0
src/populate.py CHANGED
@@ -18,6 +18,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
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
 
 
18
 
19
  # filter out if any of the benchmarks have not been produced
20
  df = df[has_no_nan_values(df, benchmark_cols)]
21
+ print(df)
22
  return raw_data, df
23
 
24