Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
---
|
| 4 |
+
### TravelBench Dataset
|
| 5 |
+
|
| 6 |
+
TravelBench is a benchmark crafted for evaluating language agents in tool-use and complex planning within multiple constraints. (See our [paper](https://arxiv.org/abs/2311.12983) for more details.)
|
| 7 |
+
|
| 8 |
+
#### Introduction
|
| 9 |
+
|
| 10 |
+
In TravelBench, for a given query, language agents are expected to formulate a comprehensive plan that includes transportation, daily meals, attractions, and accommodation for each day.
|
| 11 |
+
|
| 12 |
+
TravelBench comprises 1,225 queries in total. The number of days and hard constraints are designed to test agents' abilities across both the breadth and depth of complex planning.
|
| 13 |
+
|
| 14 |
+
#### Split
|
| 15 |
+
|
| 16 |
+
<b>Train Set</b>: 5 queries with corresponding human-annotated plans for group, resulting in a total of 45 query-plan pairs. This set provides the human annotated plan as demonstrations for in-context learning.
|
| 17 |
+
|
| 18 |
+
<b>Validation Set</b>: 20 queries from each group, amounting to 180 queries in total. There is no human annotated in this set.
|
| 19 |
+
|
| 20 |
+
<b>Test Set</b>: 1,000 randomly distributed queries. To avoid data contamination, we only provide the level, days, and natural language query fields.
|
| 21 |
+
|
| 22 |
+
#### Record Layout
|
| 23 |
+
|
| 24 |
+
- "org": The city from where the journey begins.
|
| 25 |
+
- "dest": The destination city.
|
| 26 |
+
- "days": The number of days planned for the trip.
|
| 27 |
+
- "visiting_city_number": The total number of cities included in the itinerary.
|
| 28 |
+
- "date": The specific date when the travel is scheduled.
|
| 29 |
+
- "people_numbe": The total number of people involved in the travel.
|
| 30 |
+
- "local_constraint": The local hard constraint, including house rule, cuisine, room type and transportation.
|
| 31 |
+
- "query": A natural language description or request related to the travel plan.
|
| 32 |
+
- "level": The difficulty level, which is determined by the number of hard constraints.
|
| 33 |
+
- "annotated_plan": A detailed travel plan annotated by a human, ensuring compliance with all common sense requirements and specific hard constraints.
|
| 34 |
+
|
| 35 |
+
### Citation
|
| 36 |
+
|
| 37 |
+
If our paper or related resources prove valuable to your research, we kindly ask for citation. Please feel free to contact us with any inquiries.
|
| 38 |
+
|
| 39 |
+
```bib
|
| 40 |
+
@article{Xie2024TravelBench,
|
| 41 |
+
title={},
|
| 42 |
+
author={},
|
| 43 |
+
journal={},
|
| 44 |
+
year={2024}
|
| 45 |
+
}
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
|