GeorgyG commited on
Commit
e204166
·
verified ·
1 Parent(s): 8513bd3

Reupload dataset with metadata.jsonl format

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: MWS Vision Bench
3
+ dataset_name: mws-vision-bench
4
+ language:
5
+ - ru
6
+ license: cc-by-4.0
7
+ tags:
8
+ - benchmark
9
+ - multimodal
10
+ - ocr
11
+ - kie
12
+ - grounding
13
+ - vlm
14
+ - business
15
+ - russian
16
+ - document
17
+ - visual-question-answering
18
+ - document-question-answering
19
+ task_categories:
20
+ - visual-question-answering
21
+ - document-question-answering
22
+ size_categories:
23
+ - 1K<n<10K
24
+ annotations_creators:
25
+ - expert-generated
26
+ dataset_creators:
27
+ - MTS AI Research
28
+ papers:
29
+ - title: "MWS Vision Bench: The First Russian Business-OCR Benchmark for Multimodal Models"
30
+ authors: ["MTS AI Research Team"]
31
+ year: 2025
32
+ status: "in preparation"
33
+ note: "Paper coming soon"
34
+ homepage: https://huggingface.co/datasets/MTSAIR/MWS-Vision-Bench
35
+ repository: https://github.com/mts-ai/MWS-Vision-Bench
36
+ organization: MTSAIR
37
+ ---
38
+ # MWS-Vision-Bench
39
+
40
+ > 🇷🇺 *Русскоязычное описание ниже / Russian summary below.*
41
+
42
+ **MWS Vision Bench** — the first **Russian-language business-OCR benchmark** designed for multimodal large language models (MLLMs).
43
+ This is the validation split - publicly available for open evaluation and comparison.
44
+ 🧩 **Paper is coming soon.**
45
+
46
+ 🔗 **Official repository:** [github.com/mts-ai/MWS-Vision-Bench](https://github.com/mts-ai/MWS-Vision-Bench)
47
+ 🏢 **Organization:** [MTSAIR on Hugging Face](https://huggingface.co/MTSAIR)
48
+ 📰 **Article on Habr (in Russian):** [“MWS Vision Bench — the first Russian business-OCR benchmark”](https://habr.com/ru/companies/mts_ai/articles/953292/)
49
+
50
+ ---
51
+
52
+ ## 📊 Dataset Statistics
53
+
54
+ - **Total samples:** 1,610
55
+ - **Unique images:** 550
56
+ - **Task types:** 5
57
+
58
+ ---
59
+
60
+ ## 📁 Repository Structure
61
+
62
+ ```
63
+ MWS-Vision-Bench/
64
+ ├── annotations.json # Dataset annotations
65
+ ├── images/ # Image files organized by category
66
+ │ ├── business/
67
+ │ │ ├── scans/
68
+ │ │ ├── sheets/
69
+ │ │ ├── plans/
70
+ │ │ └── diagramms/
71
+ │ ├── personal/
72
+ │ │ ├── hand_documents/
73
+ │ │ ├── hand_notebooks/
74
+ │ │ └── hand_misc/
75
+ │ └── screenshots/
76
+ │ ├── business_apps/
77
+ │ ├── cad_code/
78
+ │ ├── games/
79
+ │ └── mts_apps/
80
+ └── README.md # This file
81
+ ```
82
+
83
+ ---
84
+
85
+ ## 📋 Data Format
86
+
87
+ Each entry in `annotations.json` follows this structure:
88
+
89
+ ```python
90
+ {
91
+ "id": "1", # Unique identifier
92
+ "type": "text grounding ru", # Task type
93
+ "dataset_name": "business", # Subdataset name
94
+ "image_path": "/business/scans/...", # Path to the image
95
+ "question": "...", # Question in Russian
96
+ "answers": [...] # List of valid answers
97
+ }
98
+ ```
99
+
100
+ ---
101
+
102
+ ## 🎯 Task Types
103
+
104
+ | Task | Description | Count |
105
+ |------|--------------|-------|
106
+ | `document parsing ru` | Parsing structured documents | 247 |
107
+ | `full-page OCR ru` | End-to-end OCR on full pages | 154 |
108
+ | `key information extraction ru` | Extracting key fields | 121 |
109
+ | `reasoning VQA ru` | Visual reasoning in Russian | 550 |
110
+ | `text grounding ru` | Text–region alignment | 538 |
111
+
112
+ ---
113
+
114
+ ## 💻 Usage Example
115
+
116
+ ```python
117
+ from datasets import load_dataset
118
+
119
+ # Load dataset (authorization required if private)
120
+ dataset = load_dataset("MTSAIR/MWS-Vision-Bench", token="hf_...")
121
+
122
+ # Example iteration
123
+ for item in dataset:
124
+ print(f"ID: {item['id']}")
125
+ print(f"Type: {item['type']}")
126
+ print(f"Question: {item['question']}")
127
+ print(f"Image: {item['image_path']}")
128
+ print(f"Answers: {item['answers']}")
129
+ ```
130
+
131
+ ---
132
+
133
+ ## 📄 License
134
+
135
+ **MIT License**
136
+ © 2024 MTS AI
137
+
138
+ See [LICENSE](https://github.com/MTSAIR/multimodalocr/blob/main/LICENSE.txt) for details.
139
+
140
+ ---
141
+
142
+ ## 📚 Citation
143
+
144
+ If you use this dataset in your research, please cite:
145
+
146
+ ```bibtex
147
+ @misc{mwsvisionbench2024,
148
+ title={MWS-Vision-Bench: Russian Multimodal OCR Benchmark},
149
+ author={MTS AI Research},
150
+ organization={MTSAIR},
151
+ year={2025},
152
+ url={https://huggingface.co/datasets/MTSAIR/MWS-Vision-Bench},
153
+ note={Paper coming soon}
154
+ }
155
+ ```
156
+
157
+ ---
158
+
159
+ ## 🤝 Contacts
160
+
161
+ - **Team:** [MTSAIR Research](https://huggingface.co/MTSAIR)
162
+ - **Email:** [[email protected]](mailto:[email protected])
163
+
164
+ ---
165
+
166
+ ## 🇷🇺 Краткое описание
167
+
168
+ **MWS Vision Bench** — первый русскоязычный бенчмарк для бизнес-OCR в эпоху мультимодальных моделей.
169
+ Он включает 1610 примеров и 5 типов задач, отражающих реальные сценарии обработки документов, интерфейсов и рукописных данных.
170
+ Датасет создан для оценки и развития мультимодальных LLM в русскоязычном контексте.
171
+ 📄 *Научная статья в процессе подготовки (paper coming soon).*
172
+
173
+ ---
174
+
175
+ **Made with ❤️ by MTS AI Research Team**
176
+
images/image_0.jpg ADDED

Git LFS Details

  • SHA256: 595332205213a2b11075b95bba46e4c89a289a0747dcac08df27ecebc711a89b
  • Pointer size: 131 Bytes
  • Size of remote file: 152 kB
images/image_1.jpg ADDED

Git LFS Details

  • SHA256: 94b48ed249d07bff1fbfb4e7d4c9fe6224be0c66a5abe5d261e6dad455633e90
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
images/image_10.jpg ADDED

Git LFS Details

  • SHA256: 47ac81d5bf01c244491808c7e1916ca30e7fd56de29aaf4a9f2e5c03955d1cb0
  • Pointer size: 131 Bytes
  • Size of remote file: 174 kB
images/image_100.jpg ADDED

Git LFS Details

  • SHA256: 1973c03aebb60f11e7189330cea4e87a81f5efdbfcf89b796b7c791a67af2e10
  • Pointer size: 130 Bytes
  • Size of remote file: 75.3 kB
images/image_101.jpg ADDED

Git LFS Details

  • SHA256: d99eeb8d9a0f2ec50328be4170b4512631de125bb00771d53dba6509e511d023
  • Pointer size: 131 Bytes
  • Size of remote file: 373 kB
images/image_102.jpg ADDED

Git LFS Details

  • SHA256: ffc0f340d8a413171c8f8a9f73a055ebe43fda399457e440c5f5b42d47fc65ca
  • Pointer size: 130 Bytes
  • Size of remote file: 72.1 kB
images/image_103.png ADDED

Git LFS Details

  • SHA256: 1fdfbcd9245ee5af8968591442c4e79130170acddb1cc504b735a28fde36d435
  • Pointer size: 131 Bytes
  • Size of remote file: 143 kB
images/image_104.jpg ADDED

Git LFS Details

  • SHA256: 4a7c79b104b1a2b2cafe7bcf4ea10e51af94787f8b4e42d8e025658010bb8224
  • Pointer size: 130 Bytes
  • Size of remote file: 28.5 kB
images/image_105.jpg ADDED

Git LFS Details

  • SHA256: e0e3bb7899a1db90afab5f75211327dd3cce587b9bc9a6ae53549cc643d73116
  • Pointer size: 131 Bytes
  • Size of remote file: 121 kB
images/image_106.jpg ADDED

Git LFS Details

  • SHA256: dc93eb363caaddb9b00d8b13c18778b22713a884891f520ba4c5b7bd4255b799
  • Pointer size: 131 Bytes
  • Size of remote file: 115 kB
images/image_107.jpg ADDED

Git LFS Details

  • SHA256: d7f1428c8d1e51466213ca4aa5f0cc6050208a89e7d08d839c3af0093370b562
  • Pointer size: 131 Bytes
  • Size of remote file: 121 kB
images/image_108.jpg ADDED

Git LFS Details

  • SHA256: 5c668fba339a21f29e05c2116aa8761896b596ed28b082b950781960fce378a5
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
images/image_109.jpg ADDED

Git LFS Details

  • SHA256: 937b4e9cbb9eb1f7e7e8f268d262abcc6b86d2b62d920cbcc87c5aa0eaf5429e
  • Pointer size: 131 Bytes
  • Size of remote file: 143 kB
images/image_11.jpg ADDED

Git LFS Details

  • SHA256: f6c99da93082e2dfbeb681982a32bbdff4acdec169cb56c934ca09eb8f01bfd1
  • Pointer size: 131 Bytes
  • Size of remote file: 222 kB
images/image_110.jpg ADDED

Git LFS Details

  • SHA256: 548fd3f99d8787af469c547ed6e183cada48c438c9290ca5df8b848c4bab8b2a
  • Pointer size: 131 Bytes
  • Size of remote file: 110 kB
images/image_111.jpg ADDED

Git LFS Details

  • SHA256: 73bc10152105629479cfa8391838caf03c57d4f99646a2d8185c31e264b7c307
  • Pointer size: 130 Bytes
  • Size of remote file: 84.4 kB
images/image_112.jpg ADDED

Git LFS Details

  • SHA256: 1a001c1ac1879a513f07d99465f82c0b5a5875040fa88db4a3f42c009805ab09
  • Pointer size: 130 Bytes
  • Size of remote file: 46.4 kB
images/image_113.jpg ADDED

Git LFS Details

  • SHA256: e4262b2324ff62d931858d176564d0dbdcd40c5434f46dd82ce55adac46a37bc
  • Pointer size: 130 Bytes
  • Size of remote file: 39.8 kB
images/image_114.png ADDED

Git LFS Details

  • SHA256: d4d5280fb30e4dd15c04e74318836ed71b0dee3208728fa5f2a564cff3d49a63
  • Pointer size: 131 Bytes
  • Size of remote file: 100 kB
images/image_115.png ADDED

Git LFS Details

  • SHA256: cb2273a14a76b8a54ac4943f30df7f4cc82a2ae8609850e9818ca91da2bc7460
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
images/image_116.jpg ADDED

Git LFS Details

  • SHA256: 0bb1a63a374973a3370228ba4219ffdcde78dd831932b1495adfd675458a7ace
  • Pointer size: 130 Bytes
  • Size of remote file: 91.3 kB
images/image_117.jpg ADDED

Git LFS Details

  • SHA256: f6668d50deb0f00271f7e33ec26f68ea226fefccd615803299a72a74349227c7
  • Pointer size: 130 Bytes
  • Size of remote file: 50.9 kB
images/image_118.jpg ADDED

Git LFS Details

  • SHA256: 7d4c3709a2f8e776d9ee47e253f19e8accc4cf1550fbe959a98798a97f5924fb
  • Pointer size: 131 Bytes
  • Size of remote file: 109 kB
images/image_119.jpg ADDED

Git LFS Details

  • SHA256: 4c3919d815c93bf989c1045ba6852ef6a2e8ffad7b6d3cad465fd21c3b50f96e
  • Pointer size: 130 Bytes
  • Size of remote file: 68.8 kB
images/image_12.jpg ADDED

Git LFS Details

  • SHA256: e0c4a636c0a346dc885027ec26fe9dce7b6a26a4d479bf7ed74a8f7f8ca2a1c8
  • Pointer size: 131 Bytes
  • Size of remote file: 283 kB
images/image_120.png ADDED

Git LFS Details

  • SHA256: 7985c016bce75d8550fb2ef95f24246bbc6f9ff36f45c6391442238dcb23bdbc
  • Pointer size: 130 Bytes
  • Size of remote file: 64.8 kB
images/image_121.png ADDED

Git LFS Details

  • SHA256: 8e324f62c6e39978807853cb1c201fbafbad9fb4dc16fa9479d14b5e0c51de67
  • Pointer size: 130 Bytes
  • Size of remote file: 53.6 kB
images/image_122.jpg ADDED

Git LFS Details

  • SHA256: 7e1ddf422213ee56587302c7aabf110ae86831d7f3150da63603fb50c6903d37
  • Pointer size: 131 Bytes
  • Size of remote file: 113 kB
images/image_123.png ADDED

Git LFS Details

  • SHA256: fab092f97f2a9935c818184156f041eccfb957ebee7ba953ca685f6d8af888f0
  • Pointer size: 130 Bytes
  • Size of remote file: 40.5 kB
images/image_124.png ADDED

Git LFS Details

  • SHA256: 0e8096b84e3df8d48fdb3784b39098322e58769852ee520c6d83a406cad17c87
  • Pointer size: 130 Bytes
  • Size of remote file: 36.5 kB
images/image_125.jpg ADDED

Git LFS Details

  • SHA256: 7a371c45d175707bfaad23af7061bbeeb9b50dd04faafe8961af88034919b2e2
  • Pointer size: 130 Bytes
  • Size of remote file: 95.3 kB
images/image_126.jpg ADDED

Git LFS Details

  • SHA256: b286cb02e3eadc94ac490333cec392115e313d167656ad7eca2df49c13d1f1cc
  • Pointer size: 130 Bytes
  • Size of remote file: 30.8 kB
images/image_127.jpg ADDED

Git LFS Details

  • SHA256: 0c21c413d517593eda7e9765288ef7eab86af257382ec73af37025f8aac6e35a
  • Pointer size: 130 Bytes
  • Size of remote file: 17.7 kB
images/image_128.png ADDED

Git LFS Details

  • SHA256: 6ebfae33c31f4286b22a6571d5974f9171ee3d4127656991acd0ed21a035d4c6
  • Pointer size: 130 Bytes
  • Size of remote file: 55.8 kB
images/image_129.jpg ADDED

Git LFS Details

  • SHA256: bf603c5890355a8b99957dd89110c9e5edabae8306696426ed27c5276be42c23
  • Pointer size: 130 Bytes
  • Size of remote file: 30.7 kB
images/image_13.jpg ADDED

Git LFS Details

  • SHA256: c2f469b051d70b0dbd78adbeeb9ab8fef3f57dd40bf3264e363e3f8b31e80174
  • Pointer size: 131 Bytes
  • Size of remote file: 122 kB
images/image_130.jpg ADDED

Git LFS Details

  • SHA256: 0e3d4105e9532460b696b3121be592e936aa8cdfb092da16c1ea284f776a5106
  • Pointer size: 130 Bytes
  • Size of remote file: 18.7 kB
images/image_131.png ADDED

Git LFS Details

  • SHA256: 3cf7bbfd66cfaf0b11c574e48d228d54e20f67e68f22fdf0777ff2af89638c8d
  • Pointer size: 131 Bytes
  • Size of remote file: 100 kB
images/image_132.png ADDED

Git LFS Details

  • SHA256: b3b32c3ce7d426dbd63af0becab52ba3371c26e159f49931525f8d192be4305f
  • Pointer size: 130 Bytes
  • Size of remote file: 47.3 kB
images/image_133.png ADDED

Git LFS Details

  • SHA256: 628bd24e4aeb70cc0996752faf6da513fbfd7439230a606fed459e55d16a9bec
  • Pointer size: 131 Bytes
  • Size of remote file: 126 kB
images/image_134.jpg ADDED

Git LFS Details

  • SHA256: 4cca7e397642c7d92126676622465332214d577d3b6ed39e8406cc3c1b177c23
  • Pointer size: 130 Bytes
  • Size of remote file: 47.5 kB
images/image_135.jpg ADDED

Git LFS Details

  • SHA256: f7fa4d3cc9433d13fc1f1f25af941d77b259af1b327caa3f9c671d460cddcbe1
  • Pointer size: 131 Bytes
  • Size of remote file: 110 kB
images/image_136.jpg ADDED

Git LFS Details

  • SHA256: 38c319b3449fa625e5bf86b06816e89e6f9fc221642005038f79623622d0acae
  • Pointer size: 130 Bytes
  • Size of remote file: 61 kB
images/image_137.jpg ADDED

Git LFS Details

  • SHA256: bdfa1b861a1b1ff0ce8923becf115c524103463c0639b5e628220780a4904991
  • Pointer size: 130 Bytes
  • Size of remote file: 31.6 kB
images/image_138.jpg ADDED

Git LFS Details

  • SHA256: fffb063d609efd3c88f7f3397ef98edf8ce25b65f2a7149e3629972f727d8130
  • Pointer size: 130 Bytes
  • Size of remote file: 28.7 kB
images/image_139.jpg ADDED

Git LFS Details

  • SHA256: 0e186c3ab898a693c9a62dbb2f520b5d116cd54f0fb7584cb4f076332b1aad33
  • Pointer size: 130 Bytes
  • Size of remote file: 28.4 kB
images/image_14.jpg ADDED

Git LFS Details

  • SHA256: 77dfd2649057082a4c597bf3f475123d7860e256632fa3f782991ed83514e141
  • Pointer size: 131 Bytes
  • Size of remote file: 309 kB
images/image_140.jpg ADDED

Git LFS Details

  • SHA256: bbf4380802e3f543606f6dd5b02cdbd186a66aceae1aaf8481ccfb2a15ada93e
  • Pointer size: 130 Bytes
  • Size of remote file: 31.8 kB
images/image_141.jpg ADDED

Git LFS Details

  • SHA256: b98480d3395e1ca45256f9174588a9f237f169199064119e1536b1dea7a5f7b6
  • Pointer size: 130 Bytes
  • Size of remote file: 44.9 kB