File size: 4,248 Bytes
6c6a5b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
00e0134
 
 
 
 
 
 
6c6a5b6
 
 
 
00e0134
 
 
 
73a8c11
 
 
f404e53
 
73a8c11
 
6c6a5b6
73a8c11
 
 
 
 
 
 
 
 
 
f404e53
 
73a8c11
5f3c89d
a0bd851
73a8c11
 
 
 
 
 
 
 
 
a0f05c4
73a8c11
 
 
 
 
 
 
 
f404e53
73a8c11
f404e53
 
73a8c11
f404e53
 
73a8c11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: idx
    dtype: string
  - name: question
    dtype: string
  - name: options
    struct:
    - name: A
      dtype: string
    - name: B
      dtype: string
    - name: C
      dtype: string
    - name: D
      dtype: string
    - name: E
      dtype: string
  - name: answer
    dtype: string
  - name: explanation
    dtype: string
  - name: link
    dtype: string
  splits:
  - name: op4_test
    num_bytes: 1210993
    num_examples: 308
  - name: op5_test
    num_bytes: 1218063
    num_examples: 308
  download_size: 1206626
  dataset_size: 2429056
configs:
- config_name: default
  data_files:
  - split: op4_test
    path: data/op4_test-*
  - split: op5_test
    path: data/op5_test-*
task_categories:
- question-answering
tags:
- medical,
- clinical,
- multiple-choice
- usmle
---

# Medbullets

HuggingFace upload of a multiple-choice QA dataset of USMLE Step 2 and Step 3 style questions sourced from [Medbullets](https://step2.medbullets.com/). If used, please cite the original authors using the citation below.

## Dataset Details

### Dataset Description

The dataset contains four splits:
  - **op4_test**: four-option multiple-choice QA (choices A-D)
  - **op5_test**: five-option multiple-choice QA (choices A-E)

`op5_test` contains the same content as `op4_test`, but with one additional answer choice to increase difficulty. Note that while the content is the same, the letter choice corresponding to the correct answer is sometimes different between these splits.

### Dataset Sources

- **Repository:** https://github.com/HanjieChen/ChallengeClinicalQA
- **Paper:** https://arxiv.org/pdf/2402.18060v3

### Direct Use

```python
import json
from datasets import load_dataset, Dataset

def _strip_E(split):
    for ex in split:
        ex = dict(ex)
        ex["options"] = {k: v for k, v in ex["options"].items() if k != "E"}
        yield ex

if __name__ == "__main__":
    op4_test, op5_test = load_dataset("mkieffer/Medbullets", split=["op4_test", "op5_test"])

    # remove the "E" option from op4 split
    op4_test = Dataset.from_generator(lambda: _strip_E(op4_test))

    print("\nop4_test:\n", json.dumps(op4_test[0], indent=2))
    print("\nop5_test:\n", json.dumps(op5_test[0], indent=2))
```



## Citation 

```
@inproceedings{chen-etal-2025-benchmarking,
    title = "Benchmarking Large Language Models on Answering and Explaining Challenging Medical Questions",
    author = "Chen, Hanjie  and
      Fang, Zhouxiang  and
      Singla, Yash  and
      Dredze, Mark",
    editor = "Chiruzzo, Luis  and
      Ritter, Alan  and
      Wang, Lu",
    booktitle = "Proceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers)",
    month = apr,
    year = "2025",
    address = "Albuquerque, New Mexico",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2025.naacl-long.182/",
    doi = "10.18653/v1/2025.naacl-long.182",
    pages = "3563--3599",
    ISBN = "979-8-89176-189-6",
    abstract = "LLMs have demonstrated impressive performance in answering medical questions, such as achieving passing scores on medical licensing examinations. However, medical board exams or general clinical questions do not capture the complexity of realistic clinical cases. Moreover, the lack of reference explanations means we cannot easily evaluate the reasoning of model decisions, a crucial component of supporting doctors in making complex medical decisions. To address these challenges, we construct two new datasets: JAMA Clinical Challenge and Medbullets. JAMA Clinical Challenge consists of questions based on challenging clinical cases, while Medbullets comprises simulated clinical questions. Both datasets are structured as multiple-choice question-answering tasks, accompanied by expert-written explanations. We evaluate seven LLMs on the two datasets using various prompts. Experiments demonstrate that our datasets are harder than previous benchmarks. In-depth automatic and human evaluations of model-generated explanations provide insights into the promise and deficiency of LLMs for explainable medical QA."
}
```