Update README.md
Browse files
README.md
CHANGED
@@ -14,7 +14,7 @@ Dataset Website: https://cainiaotechai.github.io/LaDe-website/
|
|
14 |
Code Link:https://github.com/wenhaomin/LaDe
|
15 |
Paper Link: https://arxiv.org/abs/2306.10675
|
16 |
|
17 |
-
# 1 About Dataset
|
18 |
**LaDe** is a publicly available last-mile delivery dataset with millions of packages from industry.
|
19 |
It has three unique characteristics: (1) Large-scale. It involves 10,677k packages of 21k couriers over 6 months of real-world operation.
|
20 |
(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.
|
@@ -23,7 +23,7 @@ It has three unique characteristics: (1) Large-scale. It involves 10,677k packa
|
|
23 |
|
24 |
|
25 |
|
26 |
-
# 2 Download
|
27 |
LaDe is composed of two subdatasets: i) [LaDe-D](https://huggingface.co/datasets/Cainiao-AI/LaDe-D), which comes from the package delivery scenario.
|
28 |
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.
|
29 |
|
@@ -38,10 +38,25 @@ The structure of "./data/raw/" should be like:
|
|
38 |
* pickup_sh.csv
|
39 |
* ...
|
40 |
* road-network
|
41 |
-
* roads.csv
|
|
|
|
|
42 |
```
|
43 |
|
44 |
road-network/roads.csv records the road network of the five cities.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
Each sub-dataset (delivery, pickup) contains 5 CSV files, with each representing the data from a specific city, the detail of each city can be find in the following table.
|
47 |
|
@@ -55,7 +70,7 @@ Each sub-dataset (delivery, pickup) contains 5 CSV files, with each representing
|
|
55 |
| Yantai | A small city in China, with a small number of orders every day. |
|
56 |
|
57 |
|
58 |
-
# 3 Description
|
59 |
Below is the detailed field of each sub-dataset.
|
60 |
## 3.1 LaDe-P
|
61 |
| Data field | Description | Unit/format |
|
@@ -107,7 +122,7 @@ Below is the detailed field of each sub-dataset.
|
|
107 |
| ds | The date of the package delivery | Date |
|
108 |
|
109 |
|
110 |
-
# 4 Leaderboard
|
111 |
Blow shows the performance of different methods in Shanghai.
|
112 |
## 4.1 Route Prediction
|
113 |
|
@@ -151,7 +166,7 @@ Experimental results of route prediction. We use bold and underlined fonts to de
|
|
151 |
|
152 |
|
153 |
|
154 |
-
# 5 Citation
|
155 |
If you find this helpful, please cite our paper:
|
156 |
|
157 |
```shell
|
|
|
14 |
Code Link:https://github.com/wenhaomin/LaDe
|
15 |
Paper Link: https://arxiv.org/abs/2306.10675
|
16 |
|
17 |
+
# 1. About Dataset
|
18 |
**LaDe** is a publicly available last-mile delivery dataset with millions of packages from industry.
|
19 |
It has three unique characteristics: (1) Large-scale. It involves 10,677k packages of 21k couriers over 6 months of real-world operation.
|
20 |
(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.
|
|
|
23 |
|
24 |
|
25 |
|
26 |
+
# 2. Download
|
27 |
LaDe is composed of two subdatasets: i) [LaDe-D](https://huggingface.co/datasets/Cainiao-AI/LaDe-D), which comes from the package delivery scenario.
|
28 |
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.
|
29 |
|
|
|
38 |
* pickup_sh.csv
|
39 |
* ...
|
40 |
* road-network
|
41 |
+
* roads.csv
|
42 |
+
* data_with_trajectory_20s
|
43 |
+
* courier_detailed_trajectory_20s.pkl.xz
|
44 |
```
|
45 |
|
46 |
road-network/roads.csv records the road network of the five cities.
|
47 |
+
data_with_trajectory_20s/* records the trajectory of courier every 20 seconds.
|
48 |
+
```python
|
49 |
+
import pandas as pd
|
50 |
+
>>> import pandas as pd
|
51 |
+
>>> df = pd.read_pickle("courier_detailed_trajectory_20s.pkl.xz")
|
52 |
+
>>> df.head(5)
|
53 |
+
ds postman_id gps_time lat lng
|
54 |
+
0 321 106f5ac22cfd1574b196d16fed62f90d 03-21 07:31:58 3.953700e+06 3.053400e+06
|
55 |
+
1 321 106f5ac22cfd1574b196d16fed62f90d 03-21 07:32:18 3.953700e+06 3.053398e+06
|
56 |
+
2 321 106f5ac22cfd1574b196d16fed62f90d 03-21 07:32:41 3.953700e+06 3.053398e+06
|
57 |
+
3 321 106f5ac22cfd1574b196d16fed62f90d 03-21 07:55:51 3.953700e+06 3.053398e+06
|
58 |
+
4 321 106f5ac22cfd1574b196d16fed62f90d 03-21 08:31:42 3.953929e+06 3.052367e+06
|
59 |
+
```
|
60 |
|
61 |
Each sub-dataset (delivery, pickup) contains 5 CSV files, with each representing the data from a specific city, the detail of each city can be find in the following table.
|
62 |
|
|
|
70 |
| Yantai | A small city in China, with a small number of orders every day. |
|
71 |
|
72 |
|
73 |
+
# 3. Description
|
74 |
Below is the detailed field of each sub-dataset.
|
75 |
## 3.1 LaDe-P
|
76 |
| Data field | Description | Unit/format |
|
|
|
122 |
| ds | The date of the package delivery | Date |
|
123 |
|
124 |
|
125 |
+
# 4. Leaderboard
|
126 |
Blow shows the performance of different methods in Shanghai.
|
127 |
## 4.1 Route Prediction
|
128 |
|
|
|
166 |
|
167 |
|
168 |
|
169 |
+
# 5. Citation
|
170 |
If you find this helpful, please cite our paper:
|
171 |
|
172 |
```shell
|