Datasets:

Modalities:
Text
Formats:
parquet
Size:
< 1K
ArXiv:
License:
File size: 1,961 Bytes
fda865e
 
 
 
 
 
 
 
0ae4dde
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fda865e
 
 
 
 
 
e69ae5f
fda865e
e69ae5f
 
fda865e
 
 
 
 
adb6dec
fda865e
48f883b
adb6dec
48f883b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: question_id
    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: F
      dtype: string
    - name: G
      dtype: string
  - name: answer
    dtype: string
  - name: src
    dtype: string
  splits:
  - name: test
    num_bytes: 109817
    num_examples: 100
  download_size: 49322
  dataset_size: 109817
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
license: apache-2.0
---

# M-ARC

HuggingFace upload of a clinical QA benchmark designed to exploit LLMs' "inductive biases toward inflexible pattern matching from their training data rather than
engaging in flexible reasoning." If used, please cite the original authors using the citation below.

## Dataset Details

### Dataset Description

The dataset contains one split:
  - **test**: up to seven-option multiple-choice QA (choices A-G)

### Dataset Sources

- **Repository:** https://github.com/dbernardo05/medARC-QA
- **Paper:** https://arxiv.org/pdf/2502.04381

### Direct Use

```python
import json
from datasets import load_dataset

if __name__ == "__main__":
    # load the test split
    dataset_test = load_dataset("mkieffer/M-ARC", split="test")
    print("\test split:\n", dataset_test)
    print("\ntest sample:\n", json.dumps(dataset_test[0], indent=2))
```


## Citation 

```
@misc{kim2025limitationslargelanguagemodels,
      title={Limitations of Large Language Models in Clinical Problem-Solving Arising from Inflexible Reasoning}, 
      author={Jonathan Kim and Anna Podlasek and Kie Shidara and Feng Liu and Ahmed Alaa and Danilo Bernardo},
      year={2025},
      eprint={2502.04381},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2502.04381}, 
}
```