Add model card and metadata
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
base_model: Qwen/Qwen3-8B
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# EvoDS: Self-Evolving Autonomous Data Science Agent
|
| 8 |
+
|
| 9 |
+
EvoDS is a self-evolving autonomous data science agent designed to address limitations in LLM-based data science systems through skill learning and adaptive context management. It was introduced in the paper [EvoDS: Self-Evolving Autonomous Data Science Agent with Skill Learning and Context Management](https://huggingface.co/papers/2606.03841).
|
| 10 |
+
|
| 11 |
+
- **Repository:** [https://github.com/usail-hkust/EvoDS](https://github.com/usail-hkust/EvoDS)
|
| 12 |
+
- **Paper:** [https://huggingface.co/papers/2606.03841](https://huggingface.co/papers/2606.03841)
|
| 13 |
+
|
| 14 |
+
## Overview
|
| 15 |
+
|
| 16 |
+
EvoDS introduces two key strategies to overcome the limitations of static action sets and long-horizon context management in data science tasks:
|
| 17 |
+
|
| 18 |
+
1. **Autonomous Skill Acquisition (ASA):** This mechanism enables the agent to autonomously synthesize, validate, and internalize reusable tool-usage skills from its experience.
|
| 19 |
+
2. **Adaptive Context Compression (ACC):** This strategy treats context management as a learned control problem, dynamically compressing interaction history to maintain reasoning stability within limited context budgets.
|
| 20 |
+
|
| 21 |
+
The model is optimized using agentic reinforcement learning to jointly improve task completion quality, skill acquisition behavior, and context regulation.
|
| 22 |
+
|
| 23 |
+
## Performance
|
| 24 |
+
|
| 25 |
+
EvoDS outperforms state-of-the-art open-source data science agents by an average of 28.9% across four diverse benchmarks:
|
| 26 |
+
- DABench
|
| 27 |
+
- DA-Code
|
| 28 |
+
- ScienceAgentBench
|
| 29 |
+
- MLE-Dojo
|
| 30 |
+
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
For detailed instructions on how to deploy and evaluate the agent using vLLM or VERL, please refer to the [official GitHub repository](https://github.com/usail-hkust/EvoDS).
|
| 34 |
+
|
| 35 |
+
## Citation
|
| 36 |
+
|
| 37 |
+
```bibtex
|
| 38 |
+
@inproceedings{yang2026evods,
|
| 39 |
+
title={EvoDS: Self-Evolving Autonomous Data Science Agent with Skill Learning and Context Management},
|
| 40 |
+
author={Yang, Zherui and Liu, Fan and Ning, Yansong and Liu, Hao},
|
| 41 |
+
booktitle={Proceedings of the 32nd ACM SIGKDD Conference on Knowledge Discovery and Data Mining (KDD)},
|
| 42 |
+
year={2026}
|
| 43 |
+
}
|
| 44 |
+
```
|