kitab-bench commited on
Commit
a1e0778
·
verified ·
1 Parent(s): 8212c2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -12
app.py CHANGED
@@ -6,7 +6,7 @@ import numpy as np
6
  data = {
7
  "model": [
8
  "GPT-4o", "GPT-4o-mini", "Gemini-2.0-Flash", "Qwen2-VL", "Qwen2.5-VL",
9
- "AIN", "Tesseract", "EasyOCR", "Paddle", "Surya",
10
  "AzureOCR", "Namaa", "Gemma3", "ArabicNougat"
11
  ],
12
  "organization": [
@@ -40,14 +40,9 @@ data = {
40
  0.69, 1.93, 1.45, 4.67
41
  ],
42
  "downloads": [
43
- "24.5K", "18.2K", "19.6K", "89K", "152K",
44
- "89K", "320K", "235K", "112K", "45K",
45
- "250K", "67K", "95K", "78K"
46
- ],
47
- "last_updated": [
48
- "2025-03-15", "2025-03-01", "2025-03-10", "2024-12-10", "2025-03-05",
49
- "2025-02-28", "2025-01-20", "2025-02-10", "2024-11-15", "2025-02-05",
50
- "2025-02-15", "2025-01-05", "2025-02-20", "2025-01-18"
51
  ],
52
  "model_url": [
53
  "https://openai.com/index/hello-gpt-4o/",
@@ -63,7 +58,7 @@ data = {
63
  "https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/overview-ocr",
64
  "https://huggingface.co/NAMAA-Space/Qari-OCR-0.1-VL-2B-Instruct",
65
  "https://huggingface.co/google/gemma-3-12b-it",
66
- "https://huggingface.co/MohamedRashad/arabic-small-nougat"
67
  ],
68
  "paper_url": [
69
  "https://arxiv.org/abs/2410.21276",
@@ -332,7 +327,6 @@ def create_leaderboard_interface():
332
  <th>CER ↓</th>
333
  <th>WER ↓</th>
334
  <th>Downloads</th>
335
- <th>Last Updated</th>
336
  <th>Paper</th>
337
  </tr>
338
  </thead>
@@ -350,7 +344,6 @@ def create_leaderboard_interface():
350
  <td>{row['cer']}</td>
351
  <td>{row['wer']}</td>
352
  <td>{row['downloads']}</td>
353
- <td>{row['last_updated']}</td>
354
  <td>{row['paper']}</td>
355
  </tr>
356
  """
 
6
  data = {
7
  "model": [
8
  "GPT-4o", "GPT-4o-mini", "Gemini-2.0-Flash", "Qwen2-VL", "Qwen2.5-VL",
9
+ "AIN-7B", "Tesseract", "EasyOCR", "Paddle", "Surya",
10
  "AzureOCR", "Namaa", "Gemma3", "ArabicNougat"
11
  ],
12
  "organization": [
 
40
  0.69, 1.93, 1.45, 4.67
41
  ],
42
  "downloads": [
43
+ "-", "-", "-", "1262K", "3313K",
44
+ "0.86K", "-", "-", "-", "39K",
45
+ "-", "5K", "227K", "0.75K"
 
 
 
 
 
46
  ],
47
  "model_url": [
48
  "https://openai.com/index/hello-gpt-4o/",
 
58
  "https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/overview-ocr",
59
  "https://huggingface.co/NAMAA-Space/Qari-OCR-0.1-VL-2B-Instruct",
60
  "https://huggingface.co/google/gemma-3-12b-it",
61
+ "https://huggingface.co/MohamedRashad/arabic-large-nougat"
62
  ],
63
  "paper_url": [
64
  "https://arxiv.org/abs/2410.21276",
 
327
  <th>CER ↓</th>
328
  <th>WER ↓</th>
329
  <th>Downloads</th>
 
330
  <th>Paper</th>
331
  </tr>
332
  </thead>
 
344
  <td>{row['cer']}</td>
345
  <td>{row['wer']}</td>
346
  <td>{row['downloads']}</td>
 
347
  <td>{row['paper']}</td>
348
  </tr>
349
  """