Add paper link, GitHub repository, and dataset description

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - reinforcement-learning
7
+ - tool-use
8
+ - llm-agents
9
+ ---
10
+
11
+ # Agent-STAR TravelDataset
12
+
13
+ This repository contains the synthetic queries and datasets presented in the paper [Demystifying Reinforcement Learning for Long-Horizon Tool-Using Agents: A Comprehensive Recipe](https://huggingface.co/papers/2603.21972).
14
+
15
+ The dataset serves as a long-horizon tool-use testbed for Reinforcement Learning (RL) research, specifically utilizing the TravelPlanner environment.
16
+
17
+ - **Paper:** [Demystifying Reinforcement Learning for Long-Horizon Tool-Using Agents: A Comprehensive Recipe](https://huggingface.co/papers/2603.21972)
18
+ - **GitHub Repository:** [WxxShirley/Agent-STAR](https://github.com/WxxShirley/Agent-STAR)
19
+
20
+ ## Dataset Description
21
+
22
+ The dataset includes over **17K** synthetic queries generated through a three-step pipeline: element sampling, feasibility checking, and LLM back-translation. These queries require agents to iteratively call tools to satisfy multifaceted constraints.
23
+
24
+ ### File Information
25
+
26
+ | Data | Description |
27
+ |---|---|
28
+ | `TravelPlanner_Val180.jsonl` | Official TravelPlanner validation set of 180 instances |
29
+ | `TravelTotal_17K.jsonl` | All 17K+ synthetic queries after element sampling, feasibility checking, and back-translation |
30
+ | `Travel_Mixed_1K_RL.jsonl` | Default 1K RL training set with mixed difficulty |
31
+ | `Travel_Easy_1K.jsonl` | Difficulty-specific 1K set (Easy) for controlled experiments |
32
+ | `Travel_Medium_1K.jsonl` | Difficulty-specific 1K set (Medium) for controlled experiments |
33
+ | `Travel_Hard_1K.jsonl` | Difficulty-specific 1K set (Hard) for controlled experiments |
34
+
35
+ ## Related Resources
36
+
37
+ - **Travel Database:** [Agent-STAR-TravelDatabase](https://huggingface.co/datasets/xxwu/Agent-STAR-TravelDatabase) (Required for environment interactions)
38
+ - **Models:** [Agent-STAR Collection](https://huggingface.co/collections/xxwu/agent-star)
39
+
40
+ ## Citation
41
+
42
+ ```bibtex
43
+ @misc{wu2026agentstar,
44
+ title={Demystifying Reinforcement Learning for Long-Horizon Tool-Using Agents: A Comprehensive Recipe},
45
+ author={Xixi Wu and Qianguo Sun and Ruiyang Zhang and Chao Song and Junlong Wu and Yiyan Qi and Hong Cheng},
46
+ year={2026},
47
+ eprint={2603.21972},
48
+ archivePrefix={arXiv},
49
+ primaryClass={cs.LG},
50
+ url={https://arxiv.org/abs/2603.21972},
51
+ }
52
+ ```