File size: 4,947 Bytes
f4717c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
---
language:
- en
license: mit
pretty_name: "BenchBase: MedMCQA"
tags:
- medical
- question-answering
- multiple-choice
- benchmark
- clinical-knowledge
- medical-education
- benchbase
task_categories:
- question-answering
- multiple-choice
size_categories:
- 100K<n<1M
---

<h1 align="center">BenchBase: MedMCQA</h1>

<h3 align="center">193,000+ multiple-choice medical questions from Indian postgraduate medical entrance exams, spanning 2,400 healthcare topics.</h3>

<p align="center">
  <a href="https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa">
    <img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/dataset-on-hf-md.svg" alt="Dataset on HuggingFace"/>
  </a>
  &nbsp;
  <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License"/>
</p>

<p align="center">
  <img src="https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa/resolve/main/banner.svg" alt="BenchBase: MedMCQA" width="100%"/>
</p>

---

## Overview

BenchBase: MedMCQA is a repackaging of the MedMCQA dataset for the Layered Labs BenchBase
benchmark suite. The source dataset contains 193,155 multiple-choice questions drawn from
AIIMS and PGMR medical entrance examinations, covering 2,400+ healthcare topics across
clinical medicine, pharmacology, pathology, anatomy, biochemistry, and more. Each question
includes four answer options, a correct answer label, subject and topic annotations, and
optional expert explanations. The train split (182,822 questions) includes correct answer
labels; the test split (6,150 questions) withholds them for evaluation. This repackaging
standardizes column names and encoding to match the BenchBase schema.


---

## Statement of Need

Evaluating medical language models requires standardized, clinically relevant benchmarks.
MedMCQA is one of the largest and most topic-diverse medical QA datasets available, but
the original release uses inconsistent column names and encoding that complicate integration
into multi-benchmark evaluation pipelines. This BenchBase repackaging normalizes the schema,
documents all fields explicitly, and makes the dataset drop-in compatible with other BenchBase
medical benchmarks for unified evaluation.


---

## Intended Use

This dataset is intended for researchers and engineers evaluating or fine-tuning language
models on medical question answering. It is appropriate for benchmarking general medical
knowledge, subject-specific clinical reasoning, and model calibration across 2,400+ topics.
It is not intended as a clinical decision support tool or as a substitute for professional
medical judgment.


---

## Limitations

Questions are drawn from Indian postgraduate medical entrance exams and may reflect regional
clinical guidelines, drug names, and diagnostic conventions that differ from US or European
practice. The test split withholds correct answer labels, so evaluation requires submission
to the original leaderboard for held-out accuracy. Expert explanations are available for only
a subset of training questions. Some questions have ambiguous or disputed correct answers
as noted in the research literature.


---

## Dataset Structure

### Splits

| Split | Rows |
|-------|------|
| train | 182,822 |
| validation | 4,183 |
| test | 6,150 |

### Features

| Column | Type | Description |
|--------|------|-------------|
| `id` | `string` | Unique question identifier. |
| `question` | `string` | The medical question text. |
| `opa` | `string` | Answer option A. |
| `opb` | `string` | Answer option B. |
| `opc` | `string` | Answer option C. |
| `opd` | `string` | Answer option D. |
| `answer` | `int8` | Index of the correct option (0=A, 1=B, 2=C, 3=D). Null in test split. |
| `explanation` | `string` | Expert explanation for the correct answer, where available. |
| `subject` | `string` | Medical subject area (e.g., Pharmacology, Anatomy). |
| `topic` | `string` | Specific topic within the subject. |
| `choice_type` | `string` | Whether the question is single-answer or multi-answer. |

---

## Usage

```python
from datasets import load_dataset

ds = load_dataset("Layered-Labs/benchbase-medmcqa")
print(ds)
```

### Example

```python
from datasets import load_dataset

ds = load_dataset("Layered-Labs/benchbase-medmcqa")

# Inspect the training split
train = ds["train"]
print(train[0])

# Filter to pharmacology questions
pharma = train.filter(lambda x: x["subject"] == "Pharmacology")
print(f"Pharmacology questions: {len(pharma)}")

```

---

## Citation

If you use this dataset in your research, please cite:

```bibtex
@dataset{layeredlabs_benchbase_medmcqa,
  title     = {BenchBase: MedMCQA},
  author    = {Ridwan, Abdullah and Hossain, Radhyyah},
  year      = {2025},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa}
}
```

---

## License

Released under the [MIT License](LICENSE).
Maintained by [Layered Labs](https://layeredlabs.ai).