idolezal commited on
Commit
d070060
ยท
1 Parent(s): d68c05c

Bokeh figure - changed placement of the plot

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -625,12 +625,6 @@ def gradio_app():
625
  with gr.Column():
626
  gr.Markdown(LEADERBOARD_TAB_TITLE_MARKDOWN)
627
 
628
- with gr.Row():
629
- gr.Plot(
630
- value=leaderboard_server.get_bokeh_figure(),
631
- label='Foo',
632
- )
633
-
634
  with gr.Row():
635
  leaderboard_category_of_tasks = gr.Dropdown(
636
  choices=(
@@ -660,6 +654,12 @@ def gradio_app():
660
  value=leaderboard_server.get_leaderboard_csv(category=leaderboard_server.TASKS_CATEGORY_OVERALL),
661
  )
662
 
 
 
 
 
 
 
663
  with gr.Row():
664
  leaderboard_table_legend = gr.DataFrame(
665
  value=None,
 
625
  with gr.Column():
626
  gr.Markdown(LEADERBOARD_TAB_TITLE_MARKDOWN)
627
 
 
 
 
 
 
 
628
  with gr.Row():
629
  leaderboard_category_of_tasks = gr.Dropdown(
630
  choices=(
 
654
  value=leaderboard_server.get_leaderboard_csv(category=leaderboard_server.TASKS_CATEGORY_OVERALL),
655
  )
656
 
657
+ with gr.Row():
658
+ gr.Plot(
659
+ value=leaderboard_server.get_bokeh_figure(),
660
+ #label='Foo',
661
+ )
662
+
663
  with gr.Row():
664
  leaderboard_table_legend = gr.DataFrame(
665
  value=None,