b1sheng commited on
Commit
6ce58aa
·
1 Parent(s): 7ae1238

Update app.py

Browse files

add some prints to view table info.

Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -95,6 +95,8 @@ def get_leaderboard_df():
95
 
96
  # filter out if any of the benchmarks have not been produced
97
  df = df[has_no_nan_values(df, BENCHMARK_COLS)]
 
 
98
  return df
99
 
100
 
 
95
 
96
  # filter out if any of the benchmarks have not been produced
97
  df = df[has_no_nan_values(df, BENCHMARK_COLS)]
98
+ print(df)
99
+ print(type(df))
100
  return df
101
 
102