Datasets:
@data :update
Browse files- AnesBench.json +0 -0
- README.md +55 -20
- anesbench_en.json +0 -0
- anesbench_zh.json +0 -0
AnesBench.json
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
README.md
CHANGED
|
@@ -11,11 +11,16 @@ size_categories:
|
|
| 11 |
- 1K<n<10K
|
| 12 |
viewer: true
|
| 13 |
configs:
|
| 14 |
-
- config_name:
|
| 15 |
data_files:
|
| 16 |
- split: test
|
| 17 |
path:
|
| 18 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
license: c-uda
|
| 20 |
---
|
| 21 |
|
|
@@ -23,21 +28,46 @@ The AnesBench Datasets Collection comprises three distinct datasets: AnesBench,
|
|
| 23 |
|
| 24 |
# Dataset Description
|
| 25 |
|
| 26 |
-
**AnesBench** is designed to assess anesthesiology-related reasoning capabilities of Large Language Models (LLMs). It
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## JSON Sample
|
| 29 |
|
|
|
|
|
|
|
| 30 |
```json
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
```
|
| 42 |
|
| 43 |
## Field Explanations
|
|
@@ -45,15 +75,20 @@ The AnesBench Datasets Collection comprises three distinct datasets: AnesBench,
|
|
| 45 |
| Field | Type | Description |
|
| 46 |
|------------------|----------|-----------------------------------------------------------------------------|
|
| 47 |
| `id` | string | A randomly generated ID using UUID |
|
|
|
|
|
|
|
| 48 |
| `choice_num` | int | The number of options in this question |
|
| 49 |
-
| `
|
| 50 |
-
| `
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
| `en_X` | string | English description of the option (X takes values from A until the total number of options is reached) |
|
| 54 |
-
| `cn_X` | string | Chinese description of the option (X takes values from A until the total number of options is reached) |
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
## Recommended Usage
|
| 58 |
|
| 59 |
-
- **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.
|
|
|
|
| 11 |
- 1K<n<10K
|
| 12 |
viewer: true
|
| 13 |
configs:
|
| 14 |
+
- config_name: en
|
| 15 |
data_files:
|
| 16 |
- split: test
|
| 17 |
path:
|
| 18 |
+
- anesbench_en.json
|
| 19 |
+
- config_name: zh
|
| 20 |
+
data_files:
|
| 21 |
+
- split: test
|
| 22 |
+
path:
|
| 23 |
+
- anesbench_zh.json
|
| 24 |
license: c-uda
|
| 25 |
---
|
| 26 |
|
|
|
|
| 28 |
|
| 29 |
# Dataset Description
|
| 30 |
|
| 31 |
+
**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.
|
| 32 |
+
|
| 33 |
+
| Subset | File | Total | System 1 | System 1.x | System 2 |
|
| 34 |
+
|--------|------|-------|----------|-------------|----------|
|
| 35 |
+
| English | `anesbench_en.json` | 4,343 | 2,960 | 1,028 | 355 |
|
| 36 |
+
| Chinese | `anesbench_zh.json` | 3,529 | 2,784 | 534 | 211 |
|
| 37 |
|
| 38 |
## JSON Sample
|
| 39 |
|
| 40 |
+
**English** (`anesbench_en.json`):
|
| 41 |
+
|
| 42 |
```json
|
| 43 |
+
{
|
| 44 |
+
"id": "91b5e145-57f2-5307-99e4-eafd75643de4",
|
| 45 |
+
"question": "The concentration of a specific gas in solution depends on which of the following?",
|
| 46 |
+
"A": "Temperature of the solution",
|
| 47 |
+
"B": "Volume of the system",
|
| 48 |
+
"C": "Solubility of the specific gas in that solution",
|
| 49 |
+
"D": "Molecular weight of the gas",
|
| 50 |
+
"choice_num": 4,
|
| 51 |
+
"target": "C",
|
| 52 |
+
"category": 1
|
| 53 |
+
}
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
**Chinese** (`anesbench_zh.json`):
|
| 57 |
+
|
| 58 |
+
```json
|
| 59 |
+
{
|
| 60 |
+
"A": "替代治疗",
|
| 61 |
+
"B": "手术治疗",
|
| 62 |
+
"C": "对症治疗",
|
| 63 |
+
"D": "静脉输注糖皮质激素",
|
| 64 |
+
"E": "补充盐皮质激素",
|
| 65 |
+
"id": "78587bd9-f3f6-4118-b6eb-95ed7c91a0ec",
|
| 66 |
+
"question": "Addison病抢救的主要措施是",
|
| 67 |
+
"choice_num": 5,
|
| 68 |
+
"target": "D",
|
| 69 |
+
"category": 1
|
| 70 |
+
}
|
| 71 |
```
|
| 72 |
|
| 73 |
## Field Explanations
|
|
|
|
| 75 |
| Field | Type | Description |
|
| 76 |
|------------------|----------|-----------------------------------------------------------------------------|
|
| 77 |
| `id` | string | A randomly generated ID using UUID |
|
| 78 |
+
| `question` | string | The question stem |
|
| 79 |
+
| `A`–`I` | string | Answer options (from `A` up to the total number of options) |
|
| 80 |
| `choice_num` | int | The number of options in this question |
|
| 81 |
+
| `target` | string | The correct answer to this question |
|
| 82 |
+
| `category` | int | The cognitive demand category of the question (`1` = System 1, `2` = System 1.x, `3` = System 2) |
|
| 83 |
+
|
| 84 |
+
### Cognitive Demand Categories
|
|
|
|
|
|
|
| 85 |
|
| 86 |
+
| Category | Label | Description |
|
| 87 |
+
|----------|-------|-------------|
|
| 88 |
+
| 1 | **System 1** | Fast, intuitive recall of factual knowledge |
|
| 89 |
+
| 2 | **System 1.x** | Pattern recognition and application of learned rules |
|
| 90 |
+
| 3 | **System 2** | Deliberate, analytical clinical reasoning |
|
| 91 |
|
| 92 |
## Recommended Usage
|
| 93 |
|
| 94 |
+
- **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.
|
anesbench_en.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
anesbench_zh.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|