jinyan218 commited on
Commit
3f8cb0a
1 Parent(s): 94fe527

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +125 -2
README.md CHANGED
@@ -1,4 +1,14 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: order_id
@@ -54,6 +64,119 @@ dataset_info:
54
  download_size: 290229555
55
  dataset_size: 813122686
56
  ---
57
- # Dataset Card for "LaDe-D"
 
 
 
 
58
 
59
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - time-series-forecasting
5
+ tags:
6
+ - Spatial-Temporal
7
+ - Graph
8
+ - Logistic
9
+ - Last-mile Delivery
10
+ size_categories:
11
+ - 10M<n<100M
12
  dataset_info:
13
  features:
14
  - name: order_id
 
64
  download_size: 290229555
65
  dataset_size: 813122686
66
  ---
67
+ # 1. About Dataset
68
+ **LaDe** is a publicly available last-mile delivery dataset with millions of packages from industry.
69
+ It has three unique characteristics: (1) Large-scale. It involves 10,677k packages of 21k couriers over 6 months of real-world operation.
70
+ (2) Comprehensive information, it offers original package information, such as its location and time requirements, as well as task-event information, which records when and where the courier is while events such as task-accept and task-finish events happen.
71
+ (3) Diversity: the dataset includes data from various scenarios, such as package pick-up and delivery, and from multiple cities, each with its unique spatio-temporal patterns due to their distinct characteristics such as populations.
72
 
73
+ If you use this dataset for your research, please cite this paper: {xxx}
74
+
75
+ # 2. Download
76
+ [LaDe](https://huggingface.co/datasets/Cainiao-AI/LaDe) is composed of two subdatasets: i) [LaDe-D](https://huggingface.co/datasets/Cainiao-AI/LaDe-D), which comes from the package delivery scenario.
77
+ ii) [LaDe-P](https://huggingface.co/datasets/Cainiao-AI/LaDe-P), which comes from the package pickup scenario. To facilitate the utilization of the dataset, each sub-dataset is presented in CSV format.
78
+
79
+ LaDe-D is the first subdataset from [LaDe](https://huggingface.co/datasets/Cainiao-AI/LaDe).
80
+ LaDe can be used for research purposes. Before you download the dataset, please read these terms. And [Code link](https://github.com/wenhaomin/LaDe). Then put the data into "/data/raw/".
81
+ The structure of "/data/raw/" should be like:
82
+ ```
83
+ * ./data/raw/
84
+ * delivery
85
+ * delivery_sh.csv
86
+ * ...
87
+ ```
88
+
89
+ LaDe-D contains 5 files, with each representing the data from a specific city, the detail of each city can be find in the following table.
90
+
91
+
92
+ | City | Description |
93
+ |------------|----------------------------------------------------------------------------------------------|
94
+ | Shanghai | One of the most prosperous cities in China, with a large number of orders per day. |
95
+ | Hangzhou | A big city with well-developed online e-commerce and a large number of orders per day. |
96
+ | Chongqing | A big city with complicated road conditions in China, with a large number of orders. |
97
+ | Jilin | A middle-size city in China, with a small number of orders each day. |
98
+ | Yantai | A small city in China, with a small number of orders every day. |
99
+
100
+
101
+ # 3. Description
102
+ Below is the detailed field of each LaDe-D.
103
+
104
+ | Data field | Description | Unit/format |
105
+ |-----------------------|--------------------------------------|---------------|
106
+ | **Package information** | | |
107
+ | package_id | Unique identifier of each package | Id |
108
+ | **Stop information** | | |
109
+ | lng/lat | Coordinates of each stop | Float |
110
+ | city | City | String |
111
+ | region_id | Id of the region | Id |
112
+ | aoi_id | Id of the AOI | Id |
113
+ | aoi_type | Type of the AOI | Categorical |
114
+ | **Courier Information** | | |
115
+ | courier_id | Id of the courier | Id |
116
+ | **Task-event Information**| | |
117
+ | accept_time | The time when the courier accepts the task | Time |
118
+ | accept_gps_time | The time of the GPS point whose time is the closest to accept time | Time |
119
+ | accept_gps_lng/accept_gps_lat | Coordinates when the courier accepts the task | Float |
120
+ | delivery_time | The time when the courier finishes delivering the task | Time |
121
+ | delivery_gps_time | The time of the GPS point whose time is the closest to the delivery time | Time |
122
+ | delivery_gps_lng/delivery_gps_lat | Coordinates when the courier finishes the task | Float |
123
+ | **Context information** | | |
124
+ | ds | The date of the package delivery | Date |
125
+
126
+
127
+ # 4. Leaderboard
128
+ Blow shows the performance of different methods in Shanghai.
129
+ ## 4.1 Route Prediction
130
+
131
+ Experimental results of route prediction. We use bold and underlined fonts to denote the best and runner-up model, respectively.
132
+
133
+ | Method | HR@3 | KRC | LSD | ED |
134
+ |--------------|--------------|--------------|-------------|-------------|
135
+ | TimeGreedy | 57.65 | 31.81 | 5.54 | 2.15 |
136
+ | DistanceGreedy | 60.77 | 39.81 | 5.54 | 2.15 |
137
+ | OR-Tools | 66.21 | 47.60 | 4.40 | 1.81 |
138
+ | LightGBM | 73.76 | 55.71 | 3.01 | 1.84 |
139
+ | FDNET | 73.27 ± 0.47 | 53.80 ± 0.58 | 3.30 ± 0.04 | 1.84 ± 0.01 |
140
+ | DeepRoute | 74.68 ± 0.07 | 56.60 ± 0.16 | 2.98 ± 0.01 | 1.79 ± 0.01 |
141
+ | Graph2Route | 74.84 ± 0.15 | 56.99 ± 0.52 | 2.86 ± 0.02 | 1.77 ± 0.01 |
142
+
143
+
144
+ ## 4.2 Estimated Time of Arrival Prediction
145
+
146
+ | Method | MAE | RMSE | ACC@30 |
147
+ | ------ |--------------|--------------|-------------|
148
+ | LightGBM | 30.99 | 35.04 | 0.59 |
149
+ | SPEED | 23.75 | 27.86 | 0.73 |
150
+ | KNN | 36.00 | 31.89 | 0.58 |
151
+ | MLP | 21.54 ± 2.20 | 25.05 ± 2.46 | 0.79 ± 0.04 |
152
+ | FDNET | 18.47 ± 0.25 | 21.44 ± 0.28 | 0.84 ± 0.01 |
153
+
154
+
155
+ ## 4.3 Spatio-temporal Graph Forecasting
156
+
157
+
158
+ | Method | MAE | RMSE |
159
+ |-------|-------------|-------------|
160
+ | HA | 4.63 | 9.91 |
161
+ | DCRNN | 3.69 ± 0.09 | 7.08 ± 0.12 |
162
+ | STGCN | 3.04 ± 0.02 | 6.42 ± 0.05 |
163
+ | GWNET | 3.16 ± 0.06 | 6.56 ± 0.11 |
164
+ | ASTGCN | 3.12 ± 0.06 | 6.48 ± 0.14 |
165
+ | MTGNN | 3.13 ± 0.04 | 6.51 ± 0.13 |
166
+ | AGCRN | 3.93 ± 0.03 | 7.99 ± 0.08 |
167
+ | STGNCDE | 3.74 ± 0.15 | 7.27 ± 0.16 |
168
+
169
+
170
+
171
+ # 5. Citation
172
+ To cite this repository:
173
+
174
+ ```shell
175
+ @software{pytorchgithub,
176
+ author = {xx},
177
+ title = {xx},
178
+ url = {xx},
179
+ version = {0.6.x},
180
+ year = {2021},
181
+ }
182
+ ```