ahmedheakl commited on
Commit
aa9bb5e
1 Parent(s): 20f0a61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -9
app.py CHANGED
@@ -2,15 +2,33 @@ import pandas as pd
2
  import gradio as gr
3
 
4
  data = {
5
- "Method": ["GPT-4o", "GPT-4o-mini", "Gemini-1.5-Pro", "Gemini-1.5-Flash", "Qwen2-VL-2B"],
6
- "MM Understanding & Reasoning": [57.90, 48.82, 46.67, 45.58, 40.59],
7
- "OCR & Document Understanding": [59.11, 42.89, 36.59, 33.59, 25.68],
8
- "Charts & Diagram Understanding": [73.57, 64.98, 47.06, 48.25, 27.83],
9
- "Video Understanding": [74.27, 68.11, 42.94, 53.31, 38.90],
10
- "Cultural Specific Understanding": [80.86, 65.92, 56.24, 46.54, 34.27],
11
- "Medical Imaging": [49.90, 47.37, 33.77, 42.86, 29.12],
12
- "Agro Specific": [80.75, 79.58, 72.12, 76.06, 52.02],
13
- "Remote Sensing Understanding": [22.85, 16.93, 17.07, 14.95, 12.56]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
 
16
  df = pd.DataFrame(data)
 
2
  import gradio as gr
3
 
4
  data = {
5
+ "Method": [
6
+ "GPT-4o", "GPT-4o-mini", "Gemini-1.5-Pro", "Gemini-1.5-Flash", "Qwen2-VL-2B", "Pangea-7B", "InternVL2-8B", "LLaVa-NeXt-7B"
7
+ ],
8
+ "MM Understanding & Reasoning": [
9
+ 57.90, 48.82, 46.67, 45.58, 40.59, 40.09, 30.41, 26.33
10
+ ],
11
+ "OCR & Document Understanding": [
12
+ 59.11, 42.89, 36.59, 33.59, 25.68, 26.47, 15.91, 19.12
13
+ ],
14
+ "Charts & Diagram Understanding": [
15
+ 73.57, 64.98, 47.06, 48.25, 27.83, 38.87, 30.27, 27.56
16
+ ],
17
+ "Video Understanding": [
18
+ 74.27, 68.11, 42.94, 53.31, 38.90, 49.01, 51.42, 44.90
19
+ ],
20
+ "Cultural Specific Understanding": [
21
+ 80.86, 65.92, 56.24, 46.54, 34.27, 20.34, 20.88, 28.30
22
+ ],
23
+ "Medical Imaging": [
24
+ 49.90, 47.37, 33.77, 42.86, 29.12, 31.99, 29.48, 22.54
25
+ ],
26
+ "Agro Specific": [
27
+ 80.75, 79.58, 72.12, 76.06, 52.02, 74.51, 44.47, 42.00
28
+ ],
29
+ "Remote Sensing Understanding": [
30
+ 22.85, 16.93, 17.07, 14.95, 12.56, 6.67, 5.36, 8.33
31
+ ]
32
  }
33
 
34
  df = pd.DataFrame(data)