ahmedheakl commited on
Commit
6e6ac6c
1 Parent(s): e9c1ec6

Update app.py

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