kkl4 nielsr HF Staff commited on
Commit
4391020
·
1 Parent(s): 1e8fc01

Improve dataset card: add links, citation and evaluation instructions (#2)

Browse files

- Improve dataset card: add links, citation and evaluation instructions (11fd023bcea4b3f455a4367e859f87f0f4aaf639)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +48 -33
README.md CHANGED
@@ -1,14 +1,16 @@
1
  ---
2
- task_categories:
3
- - question-answering
4
  language:
5
  - en
6
  - zh
 
 
 
 
 
7
  tags:
8
  - biology
9
  - medical
10
- size_categories:
11
- - 1K<n<10K
12
  viewer: true
13
  configs:
14
  - config_name: en
@@ -21,18 +23,45 @@ configs:
21
  - split: test
22
  path:
23
  - anesbench_zh.json
24
- license: c-uda
25
  ---
26
 
27
- # Dataset Description
 
 
28
 
29
- **AnesBench** is designed to assess anesthesiology-related reasoning capabilities of Large Language Models (LLMs). It provides bilingual (English and Chinese) anesthesiology questions across two separate files. Each question is labeled with a three-level categorization of cognitive demands based on dual-process theory (System 1, System 1.x, and System 2), enabling evaluation of LLMs' knowledge, application, and clinical reasoning abilities across diverse linguistic contexts.
 
 
 
 
 
30
 
31
  | Subset | File | Total | System 1 | System 1.x | System 2 |
32
  |--------|------|-------|----------|-------------|----------|
33
  | English | `anesbench_en.json` | 4,343 | 2,960 | 1,028 | 355 |
34
  | Chinese | `anesbench_zh.json` | 3,529 | 2,784 | 534 | 211 |
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ## JSON Sample
37
 
38
  **English** (`anesbench_en.json`):
@@ -51,23 +80,6 @@ license: c-uda
51
  }
52
  ```
53
 
54
- **Chinese** (`anesbench_zh.json`):
55
-
56
- ```json
57
- {
58
- "A": "替代治疗",
59
- "B": "手术治疗",
60
- "C": "对症治疗",
61
- "D": "静脉输注糖皮质激素",
62
- "E": "补充盐皮质激素",
63
- "id": "78587bd9-f3f6-4118-b6eb-95ed7c91a0ec",
64
- "question": "Addison病抢救的主要措施是",
65
- "choice_num": 5,
66
- "target": "D",
67
- "category": 1
68
- }
69
- ```
70
-
71
  ## Field Explanations
72
 
73
  | Field | Type | Description |
@@ -79,14 +91,17 @@ license: c-uda
79
  | `target` | string | The correct answer to this question |
80
  | `category` | int | The cognitive demand category of the question (`1` = System 1, `2` = System 1.x, `3` = System 2) |
81
 
82
- ### Cognitive Demand Categories
83
-
84
- | Category | Label | Description |
85
- |----------|-------|-------------|
86
- | 1 | **System 1** | Fast, intuitive recall of factual knowledge |
87
- | 2 | **System 1.x** | Pattern recognition and application of learned rules |
88
- | 3 | **System 2** | Deliberate, analytical clinical reasoning |
89
 
90
- ## Recommended Usage
91
 
92
- - **Question Answering**: QA in a zero-shot or few-shot setting, where the question is fed into a QA system. Accuracy should be used as the evaluation metric.
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
2
  language:
3
  - en
4
  - zh
5
+ license: c-uda
6
+ size_categories:
7
+ - 1K<n<10K
8
+ task_categories:
9
+ - question-answering
10
  tags:
11
  - biology
12
  - medical
13
+ - anesthesiology
 
14
  viewer: true
15
  configs:
16
  - config_name: en
 
23
  - split: test
24
  path:
25
  - anesbench_zh.json
 
26
  ---
27
 
28
+ # AnesBench
29
+
30
+ [**Project Page**](https://mililab.github.io/anesbench.ai/) | [**Paper**](https://huggingface.co/papers/2504.02404) | [**GitHub**](https://github.com/mililab/anesbench)
31
 
32
+ **AnesBench** is a comprehensive benchmark designed to assess anesthesiology-related reasoning capabilities of Large Language Models (LLMs). It is the evaluation component of **AnesSuite**, the first comprehensive dataset suite specifically designed for anesthesiology reasoning.
33
+
34
+ The benchmark features 7,972 anesthesiology Multiple Choice Questions (MCQs) available in both English and Chinese. Each question is labeled with a three-level categorization of cognitive demands based on dual-process theory:
35
+ - **System 1**: Factual retrieval (Fast, intuitive recall).
36
+ - **System 1.x**: Hybrid reasoning (Pattern recognition and rule application).
37
+ - **System 2**: Complex decision-making (Deliberate, analytical clinical reasoning).
38
 
39
  | Subset | File | Total | System 1 | System 1.x | System 2 |
40
  |--------|------|-------|----------|-------------|----------|
41
  | English | `anesbench_en.json` | 4,343 | 2,960 | 1,028 | 355 |
42
  | Chinese | `anesbench_zh.json` | 3,529 | 2,784 | 534 | 211 |
43
 
44
+ ## Sample Usage
45
+
46
+ To evaluate a model on AnesBench, you can use the evaluation code provided in the [official repository](https://github.com/mililab/anesbench).
47
+
48
+ ### Setup
49
+ ```bash
50
+ git clone https://github.com/MiliLab/AnesBench
51
+ cd AnesBench/eval
52
+ pip install -r requirements.txt
53
+ ```
54
+
55
+ ### Run Evaluation
56
+ Prepare your environment variables and run the evaluation script:
57
+ ```bash
58
+ export RESULT_SAVE_PATH=/path/to/result_save_dir
59
+ export MODEL_PATH=/path/to/model
60
+ export BENCHMARK_PATH=/path/to/benchmark
61
+
62
+ python ./evaluate.py --config ./config.yaml
63
+ ```
64
+
65
  ## JSON Sample
66
 
67
  **English** (`anesbench_en.json`):
 
80
  }
81
  ```
82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  ## Field Explanations
84
 
85
  | Field | Type | Description |
 
91
  | `target` | string | The correct answer to this question |
92
  | `category` | int | The cognitive demand category of the question (`1` = System 1, `2` = System 1.x, `3` = System 2) |
93
 
94
+ ## Citation
 
 
 
 
 
 
95
 
96
+ If you find AnesBench helpful, please consider citing the following paper:
97
 
98
+ ```latex
99
+ @inproceedings{
100
+ feng2026anessuite,
101
+ title={AnesSuite: A Comprehensive Benchmark and Dataset Suite for Anesthesiology Reasoning in {LLM}s},
102
+ author={Xiang Feng and Wentao Jiang and Zengmao Wang and Yong Luo and Pingbo Xu and Baosheng Yu and Hua Jin and Jing Zhang},
103
+ booktitle={The Fourteenth International Conference on Learning Representations},
104
+ year={2026},
105
+ url={https://openreview.net/forum?id=iKRQMeC7yO}
106
+ }
107
+ ```