AbdullahRidwan commited on
Commit
f4717c4
·
verified ·
1 Parent(s): 4358f37

publish dataset

Browse files
Files changed (3) hide show
  1. README.md +163 -0
  2. banner.svg +0 -0
  3. data.parquet +3 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ pretty_name: "BenchBase: MedMCQA"
6
+ tags:
7
+ - medical
8
+ - question-answering
9
+ - multiple-choice
10
+ - benchmark
11
+ - clinical-knowledge
12
+ - medical-education
13
+ - benchbase
14
+ task_categories:
15
+ - question-answering
16
+ - multiple-choice
17
+ size_categories:
18
+ - 100K<n<1M
19
+ ---
20
+
21
+ <h1 align="center">BenchBase: MedMCQA</h1>
22
+
23
+ <h3 align="center">193,000+ multiple-choice medical questions from Indian postgraduate medical entrance exams, spanning 2,400 healthcare topics.</h3>
24
+
25
+ <p align="center">
26
+ <a href="https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa">
27
+ <img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/dataset-on-hf-md.svg" alt="Dataset on HuggingFace"/>
28
+ </a>
29
+ &nbsp;
30
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License"/>
31
+ </p>
32
+
33
+ <p align="center">
34
+ <img src="https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa/resolve/main/banner.svg" alt="BenchBase: MedMCQA" width="100%"/>
35
+ </p>
36
+
37
+ ---
38
+
39
+ ## Overview
40
+
41
+ BenchBase: MedMCQA is a repackaging of the MedMCQA dataset for the Layered Labs BenchBase
42
+ benchmark suite. The source dataset contains 193,155 multiple-choice questions drawn from
43
+ AIIMS and PGMR medical entrance examinations, covering 2,400+ healthcare topics across
44
+ clinical medicine, pharmacology, pathology, anatomy, biochemistry, and more. Each question
45
+ includes four answer options, a correct answer label, subject and topic annotations, and
46
+ optional expert explanations. The train split (182,822 questions) includes correct answer
47
+ labels; the test split (6,150 questions) withholds them for evaluation. This repackaging
48
+ standardizes column names and encoding to match the BenchBase schema.
49
+
50
+
51
+ ---
52
+
53
+ ## Statement of Need
54
+
55
+ Evaluating medical language models requires standardized, clinically relevant benchmarks.
56
+ MedMCQA is one of the largest and most topic-diverse medical QA datasets available, but
57
+ the original release uses inconsistent column names and encoding that complicate integration
58
+ into multi-benchmark evaluation pipelines. This BenchBase repackaging normalizes the schema,
59
+ documents all fields explicitly, and makes the dataset drop-in compatible with other BenchBase
60
+ medical benchmarks for unified evaluation.
61
+
62
+
63
+ ---
64
+
65
+ ## Intended Use
66
+
67
+ This dataset is intended for researchers and engineers evaluating or fine-tuning language
68
+ models on medical question answering. It is appropriate for benchmarking general medical
69
+ knowledge, subject-specific clinical reasoning, and model calibration across 2,400+ topics.
70
+ It is not intended as a clinical decision support tool or as a substitute for professional
71
+ medical judgment.
72
+
73
+
74
+ ---
75
+
76
+ ## Limitations
77
+
78
+ Questions are drawn from Indian postgraduate medical entrance exams and may reflect regional
79
+ clinical guidelines, drug names, and diagnostic conventions that differ from US or European
80
+ practice. The test split withholds correct answer labels, so evaluation requires submission
81
+ to the original leaderboard for held-out accuracy. Expert explanations are available for only
82
+ a subset of training questions. Some questions have ambiguous or disputed correct answers
83
+ as noted in the research literature.
84
+
85
+
86
+ ---
87
+
88
+ ## Dataset Structure
89
+
90
+ ### Splits
91
+
92
+ | Split | Rows |
93
+ |-------|------|
94
+ | train | 182,822 |
95
+ | validation | 4,183 |
96
+ | test | 6,150 |
97
+
98
+ ### Features
99
+
100
+ | Column | Type | Description |
101
+ |--------|------|-------------|
102
+ | `id` | `string` | Unique question identifier. |
103
+ | `question` | `string` | The medical question text. |
104
+ | `opa` | `string` | Answer option A. |
105
+ | `opb` | `string` | Answer option B. |
106
+ | `opc` | `string` | Answer option C. |
107
+ | `opd` | `string` | Answer option D. |
108
+ | `answer` | `int8` | Index of the correct option (0=A, 1=B, 2=C, 3=D). Null in test split. |
109
+ | `explanation` | `string` | Expert explanation for the correct answer, where available. |
110
+ | `subject` | `string` | Medical subject area (e.g., Pharmacology, Anatomy). |
111
+ | `topic` | `string` | Specific topic within the subject. |
112
+ | `choice_type` | `string` | Whether the question is single-answer or multi-answer. |
113
+
114
+ ---
115
+
116
+ ## Usage
117
+
118
+ ```python
119
+ from datasets import load_dataset
120
+
121
+ ds = load_dataset("Layered-Labs/benchbase-medmcqa")
122
+ print(ds)
123
+ ```
124
+
125
+ ### Example
126
+
127
+ ```python
128
+ from datasets import load_dataset
129
+
130
+ ds = load_dataset("Layered-Labs/benchbase-medmcqa")
131
+
132
+ # Inspect the training split
133
+ train = ds["train"]
134
+ print(train[0])
135
+
136
+ # Filter to pharmacology questions
137
+ pharma = train.filter(lambda x: x["subject"] == "Pharmacology")
138
+ print(f"Pharmacology questions: {len(pharma)}")
139
+
140
+ ```
141
+
142
+ ---
143
+
144
+ ## Citation
145
+
146
+ If you use this dataset in your research, please cite:
147
+
148
+ ```bibtex
149
+ @dataset{layeredlabs_benchbase_medmcqa,
150
+ title = {BenchBase: MedMCQA},
151
+ author = {Ridwan, Abdullah and Hossain, Radhyyah},
152
+ year = {2025},
153
+ publisher = {Hugging Face},
154
+ url = {https://huggingface.co/datasets/Layered-Labs/benchbase-medmcqa}
155
+ }
156
+ ```
157
+
158
+ ---
159
+
160
+ ## License
161
+
162
+ Released under the [MIT License](LICENSE).
163
+ Maintained by [Layered Labs](https://layeredlabs.ai).
banner.svg ADDED
data.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22213d77a06edb714abf24decfe7f1948f150efe2dbd0844996f85d56eeb3938
3
+ size 97145058