AtsuMiyai commited on
Commit
5b772ef
β€’
1 Parent(s): e8e50f1

update explanations on MM-UPD Bench

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -506,7 +506,6 @@ with block:
506
 
507
  # Table 3
508
  with gr.TabItem("πŸ… MM-IVQD Benchmark", elem_id="mmiasd-benchmark-tab-table", id=3):
509
- with gr.Row():
510
  # selection for column part:
511
  checkbox_ivqd_group = gr.CheckboxGroup(
512
  choices=TASK_IVQD_INFO,
@@ -703,4 +702,12 @@ with block:
703
  refresh_data, outputs=[data_component_aad, data_component_iasd, data_component_ivqd]
704
  )
705
 
 
 
 
 
 
 
 
 
706
  block.launch()
 
506
 
507
  # Table 3
508
  with gr.TabItem("πŸ… MM-IVQD Benchmark", elem_id="mmiasd-benchmark-tab-table", id=3):
 
509
  # selection for column part:
510
  checkbox_ivqd_group = gr.CheckboxGroup(
511
  choices=TASK_IVQD_INFO,
 
702
  refresh_data, outputs=[data_component_aad, data_component_iasd, data_component_ivqd]
703
  )
704
 
705
+ with gr.Accordion("Citation", open=False):
706
+ citation_button = gr.Textbox(
707
+ value=CITATION_BUTTON_TEXT,
708
+ label=CITATION_BUTTON_LABEL,
709
+ elem_id="citation-button",
710
+ show_copy_button=True,
711
+ )
712
+
713
  block.launch()