jinyan218 commited on
Commit
8921f5c
1 Parent(s): c2d56b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -18
README.md CHANGED
@@ -1,7 +1,5 @@
1
  ---
2
  license: apache-2.0
3
- task_categories:
4
- - time-series-forecasting
5
  tags:
6
  - Logistics
7
  - Last-mile Delivery
@@ -10,22 +8,26 @@ tags:
10
  size_categories:
11
  - 10M<n<100M
12
  ---
13
- # 1. About Dataset
14
  **LaDe** is a publicly available last-mile delivery dataset with millions of packages from industry.
15
  It has three unique characteristics: (1) Large-scale. It involves 10,677k packages of 21k couriers over 6 months of real-world operation.
16
  (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.
17
  (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.
 
18
 
19
- If you use this dataset for your research, please cite this paper: {xxx}
 
 
20
 
21
- # 2. Download
 
22
  LaDe is composed of two subdatasets: i) [LaDe-D](https://huggingface.co/datasets/Cainiao-AI/LaDe-D), which comes from the package delivery scenario.
23
  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.
24
 
25
- 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/".
26
- The structure of "/data/raw/" should be like:
27
  ```
28
- * /data/raw/
29
  * delivery
30
  * delivery_sh.csv
31
  * ...
@@ -46,7 +48,7 @@ Each sub-dataset contains 5 csv files, with each representing the data from a sp
46
  | Yantai | A small city in China, with a small number of orders every day. |
47
 
48
 
49
- # 3. Description
50
  Below is the detailed field of each sub-dataset.
51
  ## 3.1 LaDe-P
52
  | Data field | Description | Unit/format |
@@ -98,7 +100,7 @@ Below is the detailed field of each sub-dataset.
98
  | ds | The date of the package delivery | Date |
99
 
100
 
101
- # 4. Leaderboard
102
  Blow shows the performance of different methods in Shanghai.
103
  ## 4.1 Route Prediction
104
 
@@ -142,15 +144,16 @@ Experimental results of route prediction. We use bold and underlined fonts to de
142
 
143
 
144
 
145
- # 5. Citation
146
- To cite this repository:
147
 
148
  ```shell
149
- @software{pytorchgithub,
150
- author = {xx},
151
- title = {xx},
152
- url = {xx},
153
- version = {0.6.x},
154
- year = {2021},
 
155
  }
156
  ```
 
1
  ---
2
  license: apache-2.0
 
 
3
  tags:
4
  - Logistics
5
  - Last-mile Delivery
 
8
  size_categories:
9
  - 10M<n<100M
10
  ---
11
+ # 1 About Dataset
12
  **LaDe** is a publicly available last-mile delivery dataset with millions of packages from industry.
13
  It has three unique characteristics: (1) Large-scale. It involves 10,677k packages of 21k couriers over 6 months of real-world operation.
14
  (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.
15
  (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.
16
+ ![LaDe.png](./img/LaDe.png)
17
 
18
+ Dataset Website: https://wenhaomin.github.io/LaDe-website/
19
+ Code Link:https://github.com/wenhaomin/LaDe
20
+ Paper Link: https://arxiv.org/abs/2306.10675
21
 
22
+
23
+ # 2 Download
24
  LaDe is composed of two subdatasets: i) [LaDe-D](https://huggingface.co/datasets/Cainiao-AI/LaDe-D), which comes from the package delivery scenario.
25
  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.
26
 
27
+ 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/".
28
+ The structure of "./data/raw/" should be like:
29
  ```
30
+ * ./data/raw/
31
  * delivery
32
  * delivery_sh.csv
33
  * ...
 
48
  | Yantai | A small city in China, with a small number of orders every day. |
49
 
50
 
51
+ # 3 Description
52
  Below is the detailed field of each sub-dataset.
53
  ## 3.1 LaDe-P
54
  | Data field | Description | Unit/format |
 
100
  | ds | The date of the package delivery | Date |
101
 
102
 
103
+ # 4 Leaderboard
104
  Blow shows the performance of different methods in Shanghai.
105
  ## 4.1 Route Prediction
106
 
 
144
 
145
 
146
 
147
+ # 5 Citation
148
+ If you find this helpful, please cite our paper:
149
 
150
  ```shell
151
+ @misc{wu2023lade,
152
+ title={LaDe: The First Comprehensive Last-mile Delivery Dataset from Industry},
153
+ author={Lixia Wu and Haomin Wen and Haoyuan Hu and Xiaowei Mao and Yutong Xia and Ergang Shan and Jianbin Zhen and Junhong Lou and Yuxuan Liang and Liuqing Yang and Roger Zimmermann and Youfang Lin and Huaiyu Wan},
154
+ year={2023},
155
+ eprint={2306.10675},
156
+ archivePrefix={arXiv},
157
+ primaryClass={cs.DB}
158
  }
159
  ```