Add dataset card for IntTravel

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - other
4
+ tags:
5
+ - recommendation-system
6
+ - poi-recommendation
7
+ - mobility
8
+ - travel
9
+ size_categories:
10
+ - 1B<n<10B
11
+ ---
12
+
13
+ # IntTravel: A Real-World Dataset and Generative Framework for Integrated Multi-Task Travel Recommendation
14
+
15
+ [Paper](https://huggingface.co/papers/2602.11664) | [GitHub](https://github.com/AMAP-ML/IntTravel)
16
+
17
+ IntTravel is the first large-scale public dataset for integrated travel recommendation, including **4.1 billion interactions from 163 million users with 7.3 million POIs**. Built upon this dataset, the authors introduce an end-to-end, decoder-only generative framework for multi-task recommendation. It incorporates information preservation, selection, and factorization to balance task collaboration with specialized differentiation.
18
+
19
+ ## Dataset Structure
20
+
21
+ The IntTravel dataset provides a comprehensive view of user journeys, including "when to depart", "how to travel", "where to go", and "what needs arise via the route".
22
+
23
+ ### Information of POIs
24
+ The dataset contains **7,291,872** POIs distributed across several major cities in China.
25
+
26
+ | Field | Description |
27
+ |:---|:---|
28
+ | POI ID | A unique identifier for each Point of Interest. |
29
+ | Normalized score | A 0-1 score reflecting the overall popularity of the POI. |
30
+ | Geographic ID | Identifier for the POI's geographic block. Same GIDs indicate geographical proximity. |
31
+ | Category ID | A numerical identifier for the Point of Interest's category. |
32
+ | Administrative Region ID | The identifier for the administrative region of the POI. |
33
+ | Coordinates | The spatial coordinates of the POI on a 2D plane. |
34
+
35
+ ### User Profiles
36
+ The dataset contains **162,815,861** users.
37
+
38
+ | Field | Description |
39
+ |:---|:---|
40
+ | User ID | A unique identifier assigned to each user. |
41
+ | Profile Feature 1-6 | Six profile features describing the user. |
42
+
43
+ ### User Interactions
44
+ The dataset includes **4,129,827,011** user interaction events.
45
+
46
+ | Field | Description |
47
+ |:---|:---|
48
+ | User ID | A unique identifier for the user who performed the interaction. |
49
+ | Timestamp | The time of the user interaction, recorded in milliseconds. |
50
+ | Action Type | A numerical ID representing the type of user behavior (e.g., click). |
51
+ | POI ID | The identifier of the Point of Interest involved in the interaction. |
52
+ | Geographic ID | The geographic block ID where the user was during the interaction. |
53
+ | Administrative Region ID | The administrative region ID where the user was during the interaction. |
54
+ | Weather | A numerical ID representing the weather condition during the interaction. |
55
+ | Travel Mode | A numerical ID for the user's chosen travel mode. |
56
+ | Via POI ID | The identifier for a way-point POI added by the user. |
57
+
58
+ ## Citation
59
+ If you use this dataset in your research, please cite the following paper:
60
+ ```bibtex
61
+ @article{yan2025inttravel,
62
+ title={IntTravel: A Real-World Dataset and Generative Framework for Integrated Multi-Task Travel Recommendation},
63
+ author={Huimin Yan and Longfei Xu and Junjie Sun and Zheng Liu and Wei Luo and Kaikui Liu and Xiangxiang Chu},
64
+ journal={arXiv preprint arXiv:2602.11664},
65
+ year={2025}
66
+ }
67
+ ```