File size: 3,075 Bytes
6479eec
 
4dd3f8c
 
 
 
 
 
 
 
 
6479eec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
license: apache-2.0
configs:
  - config_name: jan
    data_files:
      - split: test
        path: main2025-jan.jsonl
  - config_name: apr
    data_files:
      - split: test
        path: main2025-apr.jsonl
---
# JEE Mains 2025 Math Evaluation Set

## 🧾 Dataset Summary

This dataset contains **475 math questions** from the **official JEE Mains 2025** examination, covering both **January** and **April** sessions. It is curated to benchmark mathematical reasoning models under high-stakes exam conditions.

---

## 🚀 How to Load the Dataset

You can load the evaluation data using the `datasets` library from Hugging Face:

```python
from datasets import load_dataset

# Load January session evaluation set
jan_data = load_dataset("PhysicsWallahAI/JEE-Main-2025-Math", "jan", split="test")

# Load April session evaluation set
apr_data = load_dataset("PhysicsWallahAI/JEE-Main-2025-Math", "apr", split="test")
```

---

## 📂 Dataset Structure

Each sample is stored as a JSON object with the following fields:

| Field Name         | Type      | Description                                                                 |
|--------------------|-----------|-----------------------------------------------------------------------------|
| `question`         | `string`  | Math problem text (can include LaTeX)                                      |
| `answer`           | `string`  | Final answer (NAT or symbolic form)                                        |
| `question_type`    | `int`     | `0 = Numerical Answer Type`, `1 = Multiple Choice Question`                |
| `options`          | `list`    | List of answer choices (present only for MCQ)                              |
| `correct_options`  | `list`    | Indices of correct options in `options[]` (for MCQ only)                   |
| `additional_data`  | `dict`    | Placeholder for extended fields used during model training or evaluation.  |
| `metadata`         | `dict`    | Optional metadata providing contextual information about the question.     |

---

## 📊 Dataset Statistics

| Split        | Papers | Questions |
| ------------ | ------ | --------- |
| January 2025 | 10     | 250       |
| April 2025   | 9      | 225       |
| **Total**    | 19     | **475**   |

* **MCQs**: \~80%
* **NATs**: \~20%

---

## 📥 Source

All questions were sourced from **official JEE Mains 2025** mathematics papers publicly released by **NTA**. Answer keys were cross-verified with NTA final answer releases.

---

## 💼 Intended Uses

* Benchmarking Indian math LLMs
* Evaluating symbolic + numeric reasoning
* Comparing SFT/RLHF/retrieval-based models on real exams

---

## ⚠️ Limitations

* Limited to mathematics domain

---

## 📄 Citation

```bibtex
@misc{jee2025math,
  title = {JEE Mains 2025 Math Evaluation Set},
  author = {Physics Wallah AI Research},
  year = {2025},
  note = {Official JEE Mains 2025 math questions curated for evaluating educational language models},
  howpublished = {\url{https://huggingface.co/datasets/PhysicsWallahAI/JEE-Main-2025-Math}},
}
```