Update dataset card with paper links, metadata, and benchmark details
Browse filesHi, I'm Niels from the Hugging Face community science team.
I'm opening this pull request to improve the dataset card for CareFlow. This includes:
- Adding the `image-text-to-text` task category to the YAML metadata.
- Adding links to the paper, project page, and official GitHub repository.
- Providing a detailed description of the CareFlow benchmark, including software coverage and dataset statistics.
- Adding the defined action space and usage instructions based on the repository documentation.
README.md
CHANGED
|
@@ -33,4 +33,73 @@ configs:
|
|
| 33 |
path: data/train-*
|
| 34 |
- split: test
|
| 35 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
path: data/train-*
|
| 34 |
- split: test
|
| 35 |
path: data/test-*
|
| 36 |
+
task_categories:
|
| 37 |
+
- image-text-to-text
|
| 38 |
+
tags:
|
| 39 |
+
- healthcare
|
| 40 |
+
- medical
|
| 41 |
+
- gui-automation
|
| 42 |
+
- vlm-agent
|
| 43 |
---
|
| 44 |
+
|
| 45 |
+
# CareFlow Benchmark
|
| 46 |
+
|
| 47 |
+
[**Project Page**](https://akashghosh.github.io/Care-Pilot/) | [**Paper**](https://huggingface.co/papers/2603.24157) | [**GitHub**](https://github.com/AkashGhosh/CarePilot)
|
| 48 |
+
|
| 49 |
+
**CareFlow** is a high-quality human-annotated benchmark for long-horizon software workflows across medical annotation tools, DICOM viewers, EHR systems, and laboratory information systems. It was introduced as part of the paper "CarePilot: A Multi-Agent Framework for Long-Horizon Computer Task Automation in Healthcare".
|
| 50 |
+
|
| 51 |
+
The benchmark is designed to evaluate vision-language models (VLMs) on complex, multi-step interactions in domain-specific medical contexts.
|
| 52 |
+
|
| 53 |
+
## Dataset Summary
|
| 54 |
+
|
| 55 |
+
CareFlow covers four major categories of clinical software:
|
| 56 |
+
|
| 57 |
+
| Category | Platforms |
|
| 58 |
+
|---|---|
|
| 59 |
+
| DICOM viewing & infrastructure | Orthanc, Weasis |
|
| 60 |
+
| Medical image computing & annotation | 3D Slicer |
|
| 61 |
+
| Hospital information & EMR systems | OpenEMR |
|
| 62 |
+
| Laboratory information systems | OpenHospital (OOD) |
|
| 63 |
+
|
| 64 |
+
### Dataset Statistics
|
| 65 |
+
|
| 66 |
+
| Split | Tasks | Avg. Steps | Min | Max | Actions |
|
| 67 |
+
|---|---|---|---|---|---|
|
| 68 |
+
| Train | 735 | 12.7 | 7 | 22 | 6 |
|
| 69 |
+
| Test | 315 | 12.9 | 9 | 24 | 6 |
|
| 70 |
+
| **Total** | **1050** | — | — | — | **6** |
|
| 71 |
+
|
| 72 |
+
### Action Space
|
| 73 |
+
|
| 74 |
+
The benchmark defines 6 primary atomic semantic actions:
|
| 75 |
+
- `CLICK`: Move the cursor and click at the specified item.
|
| 76 |
+
- `SCROLL`: Scroll the active view vertically or horizontally.
|
| 77 |
+
- `ZOOM`: Adjust the magnification level of the displayed image or view.
|
| 78 |
+
- `TEXT`: Type a string into the focused input field.
|
| 79 |
+
- `SEGMENT`: Create or edit a segmentation / ROI on the medical image.
|
| 80 |
+
- `COMPLETE`: Mark the workflow or task as finished.
|
| 81 |
+
|
| 82 |
+
## Usage
|
| 83 |
+
|
| 84 |
+
To run the CarePilot agentic pipeline on the CareFlow dataset, navigate to the `Agentic_Pipeline` directory in the [official repository](https://github.com/AkashGhosh/CarePilot) and use the following command:
|
| 85 |
+
|
| 86 |
+
```bash
|
| 87 |
+
python main.py --mode dataset --max_tasks 5
|
| 88 |
+
```
|
| 89 |
+
|
| 90 |
+
To generate Critic-augmented trajectories (SFT Data) from the training set:
|
| 91 |
+
|
| 92 |
+
```bash
|
| 93 |
+
python main.py --mode dataset --max_tasks 735 --start_task 0
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## Citation
|
| 97 |
+
|
| 98 |
+
```bibtex
|
| 99 |
+
@inproceedings{ghosh2026carepilot,
|
| 100 |
+
title={CarePilot: A Multi-Agent Framework for Long-Horizon Computer Task Automation in Healthcare},
|
| 101 |
+
author={Akash Ghosh and Tajamul Ashraf and Rishu Kumar Singh and Numan Saeed and Sriparna Saha and Xiuying Chen and Salman Khan},
|
| 102 |
+
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 103 |
+
year={2026},
|
| 104 |
+
}
|
| 105 |
+
```
|