RohitManglik commited on
Commit
d4dfda4
·
verified ·
1 Parent(s): 43d4607

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +307 -0
README.md CHANGED
@@ -1,3 +1,310 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - hi
6
+ - te
7
+ - ta
8
+ - mr
9
+ - bn
10
+ - gu
11
+ - kn
12
+ - pa
13
+ - ml
14
+ - or
15
+ - ar
16
+
17
+
18
+ pretty_name: Multimodal Educational Question Answering Dataset
19
+
20
+ size_categories:
21
+ - 1M<n<10M
22
+
23
+ tags:
24
+ - multimodal
25
+ - vision-language
26
+ - vlm
27
+ - llm
28
+ - image-text
29
+ - educational
30
+ - question-answering
31
+ - document-understanding
32
+ - stem
33
+ - non-stem
34
+ - reasoning
35
+ - chart-understanding
36
+ - diagram-understanding
37
+ - mathematical-reasoning
38
+ - rag
39
+ - instruction-tuning
40
+ - json
41
+ - pdf
42
+ - computer-vision
43
+ - ocr
44
  ---
45
+
46
+ # Multimodal Educational Question Answering Dataset
47
+
48
+ ## Overview
49
+
50
+ The **Multimodal Educational Question Answering Dataset** is a large-scale educational corpus designed for **Vision Language Models (VLMs), Large Language Models (LLMs), Retrieval-Augmented Generation (RAG), document intelligence systems, OCR research, and multimodal reasoning applications.**
51
+
52
+ The dataset combines **text, images, mathematical equations, diagrams, charts, tables, and detailed explanations**, enabling AI systems to reason across both textual and visual information.
53
+
54
+ Unlike conventional QA datasets that contain only text, this dataset preserves educational illustrations, scientific figures, mathematical expressions, graphs, and document layouts, making it ideal for next-generation multimodal AI.
55
+
56
+ ---
57
+
58
+ # Dataset Highlights
59
+
60
+ | Property | Value |
61
+ |-----------|--------|
62
+ | Dataset Type | Multimodal Educational QA |
63
+ | Modalities | Text + Images + Equations + Tables + Charts |
64
+ | Languages | 12 |
65
+ | Formats | JSON & PDF |
66
+ | Image Support | ✅ |
67
+ | Mathematical Equations | LaTeX & MathML |
68
+ | Multiple Choice Questions | ✅ |
69
+ | Detailed Explanations | ✅ |
70
+ | AI Ready | ✅ |
71
+
72
+ ---
73
+
74
+ # Modalities Included
75
+
76
+ The dataset combines multiple information sources within a single sample.
77
+
78
+ - Text
79
+ - Educational Images
80
+ - Scientific Diagrams
81
+ - Flowcharts
82
+ - Tables
83
+ - Graphs
84
+ - Mathematical Formulae
85
+ - Chemical Structures
86
+ - Physics Diagrams
87
+ - Biology Illustrations
88
+ - OCR-readable Documents
89
+ - Structured Metadata
90
+
91
+ ---
92
+
93
+ # Supported Languages
94
+
95
+ - English
96
+ - Hindi
97
+ - Telugu
98
+ - Marathi
99
+ - Bengali
100
+ - Arabic
101
+ - Tamil
102
+ - Gujarati
103
+ - Kannada
104
+ - Punjabi
105
+ - Odia
106
+ - Malayalam
107
+
108
+ ---
109
+
110
+ # Subject Coverage
111
+
112
+ ## STEM
113
+
114
+ - Mathematics
115
+ - Physics
116
+ - Chemistry
117
+ - Biology
118
+ - Engineering
119
+ - Computer Science
120
+ - Information Technology
121
+ - Medical Sciences
122
+ - Environmental Science
123
+ - Agriculture
124
+ - General Science
125
+
126
+ ## Non-STEM
127
+
128
+ - History
129
+ - Geography
130
+ - Economics
131
+ - Business Studies
132
+ - Commerce
133
+ - Law
134
+ - Political Science
135
+ - Sociology
136
+ - Teaching
137
+ - Communication
138
+ - General Knowledge
139
+ - Languages
140
+
141
+ ---
142
+
143
+ # Sample Dataset Record
144
+
145
+ ```json
146
+ {
147
+ "question": "Identify the labeled part of the human heart shown in the diagram.",
148
+ "image": "heart_diagram.png",
149
+ "options": [
150
+ "Left Atrium",
151
+ "Right Atrium",
152
+ "Left Ventricle",
153
+ "Aorta"
154
+ ],
155
+ "answer": "Aorta",
156
+ "explanation": "The labeled structure represents the main artery carrying oxygenated blood from the left ventricle."
157
+ }
158
+ ```
159
+
160
+ ---
161
+
162
+ # Dataset Features
163
+
164
+ - Image-grounded question answering
165
+ - Multiple-choice questions
166
+ - Rich educational explanations
167
+ - Embedded diagrams
168
+ - Scientific illustrations
169
+ - Mathematical equations
170
+ - Charts and graphs
171
+ - OCR-compatible documents
172
+ - Structured JSON annotations
173
+ - Human-readable PDF references
174
+ - Vision-language learning ready
175
+ - Retrieval-friendly format
176
+
177
+ ---
178
+
179
+ # AI Tasks Supported
180
+
181
+ - Visual Question Answering (VQA)
182
+ - Multimodal Question Answering
183
+ - Document Understanding
184
+ - OCR
185
+ - Image Captioning
186
+ - Chart Understanding
187
+ - Table Understanding
188
+ - Diagram Reasoning
189
+ - Mathematical Reasoning
190
+ - Scientific Reasoning
191
+ - Retrieval-Augmented Generation (RAG)
192
+ - Instruction Tuning
193
+ - Supervised Fine-Tuning (SFT)
194
+ - Vision-Language Model Training
195
+
196
+ ---
197
+
198
+ # Potential Applications
199
+
200
+ - Vision Language Models (VLMs)
201
+ - Educational AI Tutors
202
+ - AI Teaching Assistants
203
+ - Intelligent OCR Systems
204
+ - Document AI
205
+ - Academic Search Engines
206
+ - Digital Libraries
207
+ - Interactive Learning Platforms
208
+ - Educational Chatbots
209
+ - AI Examination Systems
210
+ - Scientific Document Analysis
211
+ - Knowledge Retrieval Systems
212
+
213
+ ---
214
+
215
+ # Industries
216
+
217
+ - Artificial Intelligence
218
+ - Education Technology (EdTech)
219
+ - Higher Education
220
+ - Schools
221
+ - Research Organizations
222
+ - Digital Publishing
223
+ - Healthcare Education
224
+ - Government Education
225
+ - Scientific Computing
226
+ - Enterprise Knowledge Management
227
+
228
+ ---
229
+
230
+ # Dataset Structure
231
+
232
+ ```
233
+ Multimodal_Dataset/
234
+
235
+ ├── PDFs/
236
+ │ ├── Mathematics.pdf
237
+ │ ├── Biology.pdf
238
+ │ ├── Physics.pdf
239
+ │ └── ...
240
+
241
+ ├── JSONs/
242
+ │ ├── Mathematics.json
243
+ │ ├── Biology.json
244
+ │ ├── Physics.json
245
+ │ └── ...
246
+
247
+ ├── Images/
248
+ │ ├── diagrams/
249
+ │ ├── charts/
250
+ │ ├── tables/
251
+ │ ├── figures/
252
+ │ └── illustrations/
253
+ ```
254
+
255
+ ---
256
+
257
+ # Advantages
258
+
259
+ - Large-scale multimodal educational corpus
260
+ - Supports both text and vision models
261
+ - Rich reasoning annotations
262
+ - Multiple educational domains
263
+ - Mathematical notation preserved
264
+ - High-quality structured metadata
265
+ - Ready for enterprise AI workflows
266
+ - Compatible with Hugging Face, ModelScope, and PyTorch ecosystems
267
+
268
+ ---
269
+
270
+ # Recommended Models
271
+
272
+ This dataset is suitable for training or fine-tuning:
273
+
274
+ - Vision Language Models (VLMs)
275
+ - GPT-style Multimodal Models
276
+ - LLaVA
277
+ - Qwen-VL
278
+ - InternVL
279
+ - Florence
280
+ - BLIP-2
281
+ - IDEFICS
282
+ - Kosmos
283
+ - MiniCPM-V
284
+ - OCR + LLM Pipelines
285
+
286
+ ---
287
+
288
+ # License
289
+
290
+ This dataset is released under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** License.
291
+
292
+ Users are free to use, modify, distribute, and build upon the dataset with proper attribution.
293
+
294
+ ---
295
+
296
+ # Citation
297
+
298
+ ```bibtex
299
+ @dataset{multimodal_educational_qa,
300
+ title={Multimodal Educational Question Answering Dataset},
301
+ year={2026},
302
+ license={CC BY 4.0}
303
+ }
304
+ ```
305
+
306
+ ---
307
+
308
+ # Conclusion
309
+
310
+ The **Multimodal Educational Question Answering Dataset** provides a comprehensive resource for developing intelligent AI systems capable of understanding both textual and visual educational content. By combining questions, answers, explanations, images, diagrams, tables, equations, and multilingual content, it supports a wide range of multimodal learning tasks, making it an ideal dataset for training state-of-the-art Vision Language Models, document AI systems, educational assistants, and retrieval-augmented generation pipelines.