Update README.md
Browse files
README.md
CHANGED
|
@@ -37,3 +37,48 @@ configs:
|
|
| 37 |
- split: test
|
| 38 |
path: data/test-*
|
| 39 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
- split: test
|
| 38 |
path: data/test-*
|
| 39 |
---
|
| 40 |
+
|
| 41 |
+
# Medbullets
|
| 42 |
+
|
| 43 |
+
HuggingFace upload of a clinical QA benchmark designed to exploit LLMs' "inductive biases toward inflexible pattern matching from their training data rather than
|
| 44 |
+
engaging in flexible reasoning." If used, please cite the original authors using the citation below.
|
| 45 |
+
|
| 46 |
+
## Dataset Details
|
| 47 |
+
|
| 48 |
+
### Dataset Description
|
| 49 |
+
|
| 50 |
+
The dataset contains one split:
|
| 51 |
+
- **test**: up to seven-option multiple-choice QA (choices A-G)
|
| 52 |
+
|
| 53 |
+
### Dataset Sources
|
| 54 |
+
|
| 55 |
+
- **Repository:** https://github.com/dbernardo05/medARC-QA
|
| 56 |
+
- **Paper:** https://arxiv.org/pdf/2502.04381
|
| 57 |
+
|
| 58 |
+
### Direct Use
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
import json
|
| 62 |
+
from datasets import load_dataset
|
| 63 |
+
|
| 64 |
+
if __name__ == "__main__":
|
| 65 |
+
# load the test split
|
| 66 |
+
dataset_test = load_dataset("mkieffer/M-ARC", split="test")
|
| 67 |
+
print("\test split:\n", dataset_test)
|
| 68 |
+
print("\ntest sample:\n", json.dumps(dataset_test[0], indent=2))
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
```
|
| 75 |
+
@misc{kim2025limitationslargelanguagemodels,
|
| 76 |
+
title={Limitations of Large Language Models in Clinical Problem-Solving Arising from Inflexible Reasoning},
|
| 77 |
+
author={Jonathan Kim and Anna Podlasek and Kie Shidara and Feng Liu and Ahmed Alaa and Danilo Bernardo},
|
| 78 |
+
year={2025},
|
| 79 |
+
eprint={2502.04381},
|
| 80 |
+
archivePrefix={arXiv},
|
| 81 |
+
primaryClass={cs.CL},
|
| 82 |
+
url={https://arxiv.org/abs/2502.04381},
|
| 83 |
+
}
|
| 84 |
+
```
|