Add dataset card with paper link, GitHub link, and benchmark info

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +57 -3
README.md CHANGED
@@ -1,3 +1,57 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - medical
9
+ - clinical
10
+ - EHR
11
+ ---
12
+
13
+ # AGENTEHR: Advancing Autonomous Clinical Decision-Making via Retrospective Summarization
14
+
15
+ [**Paper**](https://huggingface.co/papers/2601.13918) | [**Code**](https://github.com/BlueZeros/AgentEHR)
16
+
17
+ **AGENTEHR** is a novel benchmark designed to bridge the gap between idealized experimental settings and realistic clinical environments. Unlike previous tasks that focus on factual retrieval, AGENTEHR challenges agents to perform complex **clinical decision-making**—such as diagnosis and treatment planning—directly within raw, high-noise EHR databases.
18
+
19
+ ## 💡 Key Features
20
+ * **Realistic Clinical Benchmark**: Covers six core tasks (Diagnoses, Labevents, Microbiology, Prescriptions, Procedures, and Transfers) spanning the entire patient hospitalization lifecycle.
21
+ * **Toolbox MCP Server**: A standardized interface providing agents access to over **19 specialized tools**, including SQL execution, temporal filtering, and semantic search.
22
+ * **Retrospective Reasoning**: Supports the evaluation of frameworks that re-evaluate interaction history to capture latent correlations and ensure logical coherence.
23
+ * **Experience Memory Bank**: Facilitates strategies that crystallize successful approaches into an external memory bank.
24
+
25
+ ## 📊 Benchmark Structure
26
+ AGENTEHR is organized into three experimental subsets based on MIMIC-IV and MIMIC-III to evaluate generalization and robustness:
27
+
28
+ | Subset | Distribution Type | Description |
29
+ | :--- | :--- | :--- |
30
+ | **MIMIC-IV-Common** | In-Distribution | Primary benchmark assessing standard clinical reasoning capabilities on prevalent conditions. |
31
+ | **MIMIC-IV-Rare** | Label-Shift OOD | Evaluates the agent's ability to handle low-prevalence diseases where parametric knowledge is weaker. |
32
+ | **MIMIC-III** | Systemic-Shift OOD | Presents fundamental differences in table schema and higher recording density/noise. |
33
+
34
+ ## ⚡ Quick Start
35
+
36
+ ### Environment Setup
37
+ To use this benchmark with the official code, follow these steps:
38
+ ```bash
39
+ git clone https://github.com/BlueZeros/AgentEHR.git
40
+ cd AgentEHR
41
+ pip install -r requirements.txt
42
+ pip install -U vllm
43
+ ```
44
+
45
+ ### Database Preparation
46
+ Download the dataset from this repository. Copy the `EHRAgentBench` and `MIMICIIIAgentBench` folders into the `./data` folder in your root directory of the cloned repository.
47
+
48
+ ## Citation
49
+ If you find our work helpful, please cite our paper:
50
+ ```bibtex
51
+ @article{liao2026agentehr,
52
+ title={AgentEHR: Advancing Autonomous Clinical Decision-Making via Retrospective Summarization},
53
+ author={Yusheng Liao and Chuan Xuan and Yutong Cai and Lina Yang and Zhe Chen and Yanfeng Wang and Yu Wang},
54
+ journal={arXiv preprint arXiv:2601.13918},
55
+ year={2026}
56
+ }
57
+ ```