albertvillanova HF staff commited on
Commit
4289e9d
β€’
1 Parent(s): 131a4d7

Pass fill_width to Gradio

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ from src.results import update_load_results_component, \
14
  result_paths_per_model = sort_result_paths_per_model(fetch_result_paths())
15
  load_results_dataframes = partial(load_results_dataframes, result_paths_per_model=result_paths_per_model)
16
 
17
- with gr.Blocks(fill_height=True) as demo:
18
  gr.HTML("<h1 style='text-align: center;'>Compare Results of the πŸ€— Open LLM Leaderboard</h1>")
19
  gr.HTML("<h3 style='text-align: center;'>Select 2 models to load and compare their results</h3>")
20
 
 
14
  result_paths_per_model = sort_result_paths_per_model(fetch_result_paths())
15
  load_results_dataframes = partial(load_results_dataframes, result_paths_per_model=result_paths_per_model)
16
 
17
+ with gr.Blocks(fill_height=True, fill_width=True) as demo:
18
  gr.HTML("<h1 style='text-align: center;'>Compare Results of the πŸ€— Open LLM Leaderboard</h1>")
19
  gr.HTML("<h3 style='text-align: center;'>Select 2 models to load and compare their results</h3>")
20