Enhance dataset card: Add metadata, paper link, license, and sample usage (#2)
Browse files- Enhance dataset card: Add metadata, paper link, license, and sample usage (090c785d38a58005d9a1162bd237b9d57c02ffed)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
|
@@ -32,9 +32,21 @@ configs:
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
---
|
| 36 |
|
| 37 |
-
|
| 38 |
# mmJEE-Eval: A Bilingual Multimodal Benchmark for Exam-Style Evaluation of Vision-Language Models
|
| 39 |
|
| 40 |
<div align="center">
|
|
@@ -53,6 +65,30 @@ configs:
|
|
| 53 |
</a>
|
| 54 |
</div>
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
## Introduction
|
| 57 |
|
| 58 |
-
mmJEE-Eval
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
data_files:
|
| 33 |
- split: train
|
| 34 |
path: data/train-*
|
| 35 |
+
task_categories:
|
| 36 |
+
- image-text-to-text
|
| 37 |
+
- question-answering
|
| 38 |
+
license: mit
|
| 39 |
+
language:
|
| 40 |
+
- en
|
| 41 |
+
- hi
|
| 42 |
+
tags:
|
| 43 |
+
- multimodal
|
| 44 |
+
- vlm
|
| 45 |
+
- scientific-reasoning
|
| 46 |
+
- benchmark
|
| 47 |
+
- education
|
| 48 |
---
|
| 49 |
|
|
|
|
| 50 |
# mmJEE-Eval: A Bilingual Multimodal Benchmark for Exam-Style Evaluation of Vision-Language Models
|
| 51 |
|
| 52 |
<div align="center">
|
|
|
|
| 65 |
</a>
|
| 66 |
</div>
|
| 67 |
|
| 68 |
+
**Paper:** [mmJEE-Eval: A Bilingual Multimodal Benchmark for Evaluating Scientific Reasoning in Vision-Language Models](https://huggingface.co/papers/2511.09339)
|
| 69 |
+
**Code:** [https://github.com/ArkaMukherjee0/mmJEE-Eval](https://github.com/ArkaMukherjee0/mmJEE-Eval)
|
| 70 |
+
**Project Page:** [https://mmjee-eval.github.io](https://mmjee-eval.github.io)
|
| 71 |
+
|
| 72 |
## Introduction
|
| 73 |
|
| 74 |
+
mmJEE-Eval is a multimodal and bilingual dataset for LLM evaluation comprising 1,460 challenging questions from seven years (2019-2025) of India's JEE Advanced competitive examination. We evaluate 17 state-of-the-art VLMs, finding that open models (from 7B-400B) struggle significantly (maxing at 40-50%) as compared to frontier models from Google and OpenAI (77-84%). mmJEE-Eval is significantly more challenging than the text-only JEEBench, the only other well-established dataset on JEE Advanced problems, with performance drops of 18-56% across all models. Our findings, especially metacognitive self-correction abilities, cross-lingual consistency, and human evaluation of reasoning quality, demonstrate that contemporary VLMs still show authentic scientific reasoning deficits despite strong question-solving capabilities (as evidenced by high Pass@K accuracies), establishing mmJEE-Eval as a challenging complementary benchmark that effectively discriminates between model capabilities.
|
| 75 |
+
|
| 76 |
+
## Sample Usage
|
| 77 |
+
|
| 78 |
+
You can load the dataset using the Hugging Face `datasets` library:
|
| 79 |
+
|
| 80 |
+
```python
|
| 81 |
+
from datasets import load_dataset
|
| 82 |
+
|
| 83 |
+
# Load the entire dataset
|
| 84 |
+
dataset = load_dataset("ArkaMukherjee/mmJEE-Eval")
|
| 85 |
+
|
| 86 |
+
# Access the training split
|
| 87 |
+
train_dataset = dataset["train"]
|
| 88 |
+
|
| 89 |
+
# Print an example
|
| 90 |
+
print(train_dataset[0])
|
| 91 |
+
|
| 92 |
+
# To run evaluation scripts, please refer to the official GitHub repository:
|
| 93 |
+
# https://github.com/ArkaMukherjee0/mmJEE-Eval
|
| 94 |
+
```
|