teowu commited on
Commit
47c7c24
Β·
1 Parent(s): 1a17291

add A2/A3 existing results

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -7,8 +7,7 @@ LEADERBORAD_INTRODUCTION = """# Q-Bench Leaderboard
7
 
8
  <img style="width:40%" src="https://raw.githubusercontent.com/Q-Future/Q-Bench/master/logo.png">
9
 
10
-
11
- *"How do multi-modaility LLMs perform on low-level computer vision?"*
12
  πŸ† Welcome to the leaderboard of the **Q-Bench**! *A Comprehensive Benchmark Suite for General-purpose Foundation Models on Low-level Vision*
13
  <div style="display: flex; flex-wrap: wrap; align-items: center; gap: 10px;">
14
  <a href="https://github.com/Q-Future/"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fvqassessment%2FQ-Bench&count_bg=%23E97EBA&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=visitors&edge_flat=false"/></a>
@@ -32,12 +31,16 @@ with block:
32
  )
33
  with gr.Tab("Perception (A1, dev)"):
34
  gr.DataFrame(pd.read_csv("qbench_a1_single_dev.csv"))
35
- with gr.Tab("Perception (A1,test)"):
36
  gr.DataFrame(pd.read_csv("qbench_a1_single_test.csv"))
37
  with gr.Tab("Description (A2)"):
38
  gr.DataFrame(pd.read_csv("qbench_a2_single.csv"))
39
  with gr.Tab("Assessment (A3)"):
40
  gr.DataFrame(pd.read_csv("qbench_a3_single.csv"))
41
-
 
 
 
 
42
 
43
  block.launch(share=True)
 
7
 
8
  <img style="width:40%" src="https://raw.githubusercontent.com/Q-Future/Q-Bench/master/logo.png">
9
 
10
+ **[ICLR 2024 Spotlight]** *"How do multi-modaility LLMs perform on low-level computer vision?"*
 
11
  πŸ† Welcome to the leaderboard of the **Q-Bench**! *A Comprehensive Benchmark Suite for General-purpose Foundation Models on Low-level Vision*
12
  <div style="display: flex; flex-wrap: wrap; align-items: center; gap: 10px;">
13
  <a href="https://github.com/Q-Future/"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fvqassessment%2FQ-Bench&count_bg=%23E97EBA&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=visitors&edge_flat=false"/></a>
 
31
  )
32
  with gr.Tab("Perception (A1, dev)"):
33
  gr.DataFrame(pd.read_csv("qbench_a1_single_dev.csv"))
34
+ with gr.Tab("Perception (A1, test)"):
35
  gr.DataFrame(pd.read_csv("qbench_a1_single_test.csv"))
36
  with gr.Tab("Description (A2)"):
37
  gr.DataFrame(pd.read_csv("qbench_a2_single.csv"))
38
  with gr.Tab("Assessment (A3)"):
39
  gr.DataFrame(pd.read_csv("qbench_a3_single.csv"))
40
+ with gr.Tab("Submit to Q-Bench (coming soon!)"):
41
+ gr.Markdown(
42
+ "We will release the submission guidance here soon!"
43
+ )
44
+
45
 
46
  block.launch(share=True)