File size: 2,743 Bytes
81d7e59
 
b4c3eb7
715c6e6
8d75ede
 
 
715c6e6
 
8d75ede
 
715c6e6
 
8d75ede
 
b4c3eb7
 
12b75f1
b71a108
70c4dd1
b71a108
1f67050
b71a108
12b75f1
b71a108
12b75f1
b71a108
1f67050
b71a108
d9b3ef9
b71a108
f7d10ae
b71a108
 
 
1f67050
b71a108
 
 
 
 
 
 
 
 
 
 
195a0c8
b71a108
1f67050
b71a108
 
 
 
12b75f1
70c4dd1
 
 
 
b71a108
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
license: cc-by-4.0
configs:
- config_name: train
  data_files:
  - split: train
    path: "train.csv"
- config_name: validation
  data_files:
  - split: validation
    path: "validation.csv"
- config_name: test
  data_files:
  - split: test
    path: "test.csv"
---

# TravelPlanner Dataset

TravelPlanner is a benchmark crafted for evaluating language agents in tool-use and complex planning within multiple constraints. (See our [paper](https://arxiv.org/pdf/2402.01622.pdf) for more details.)

## Introduction

In TravelPlanner, for a given query, language agents are expected to formulate a comprehensive plan that includes transportation, daily meals, attractions, and accommodation for each day.

TravelPlanner 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.

## Split

<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 plans as demonstrations for in-context learning.

<b>Validation Set</b>: 20 queries from each group, amounting to 180 queries in total. There is no  human annotated plan in this set.

<b>Test Set</b>: 1,000 randomly distributed queries. To avoid data contamination, we only provide the level, days, and natural language query fields.

## Record Layout

- "org": The city from where the journey begins.
- "dest": The destination city.
- "days": The number of days planned for the trip.
- "visiting_city_number":  The total number of cities included in the itinerary.
- "date": The specific date when the travel is scheduled.
- "people_numbe": The total number of people involved in the travel.
- "local_constraint": The local hard constraint, including house rule, cuisine, room type and transportation.
- "query":  A natural language description or request related to the travel plan.
- "level": The difficulty level, which is determined by the number of hard constraints.
- "annotated_plan":  A detailed travel plan annotated by a human, ensuring compliance with all common sense requirements and specific hard constraints.
- "reference_information": Reference information for "sole-planning" mode.

## Citation

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.

```bib
@article{Xie2024TravelPlanner,
  author    = {Jian Xie, Kai Zhang, Jiangjie Chen, Tinghui Zhu, Renze Lou, Yuandong Tian, Yanghua Xiao, Yu Su},
  title     = {TravelPlanner: A Benchmark for Real-World Planning with Language Agents},
  journal   = {arXiv preprint arXiv: 2402.01622},
  year      = {2024}
}
```