danielz02 commited on
Commit
709c79a
1 Parent(s): 13d7618

Fix column width

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. src/populate.py +0 -1
app.py CHANGED
@@ -201,7 +201,7 @@ with demo:
201
  elem_id="leaderboard-table",
202
  interactive=False,
203
  visible=True,
204
- column_widths=["2%", "33%"]
205
  )
206
 
207
  # Dummy leaderboard for handling the case when the user uses backspace key
 
201
  elem_id="leaderboard-table",
202
  interactive=False,
203
  visible=True,
204
+ column_widths=["2%", "20%"]
205
  )
206
 
207
  # Dummy leaderboard for handling the case when the user uses backspace key
src/populate.py CHANGED
@@ -18,7 +18,6 @@ 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
- print(df)
22
  return raw_data, df
23
 
24
 
 
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