JarvisGu commited on
Commit
01c3bb3
·
1 Parent(s): 5cd9376
Files changed (5) hide show
  1. .gitattributes +2 -0
  2. .gitignore +10 -0
  3. README.md +120 -0
  4. data/eval.parquet +3 -0
  5. data/train.parquet +3 -0
.gitattributes CHANGED
@@ -57,3 +57,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ data/eval.parquet filter=lfs diff=lfs merge=lfs -text
61
+ data/train.parquet filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #system ignore
2
+ .DS_Store
3
+ Thumbs.db
4
+ .idea
5
+
6
+ # files by the editor
7
+ *.swp
8
+ *.vscode
9
+ .ipynb_checkpoints
10
+
README.md CHANGED
@@ -1,3 +1,123 @@
1
  ---
 
 
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: cc-by-4.0
5
+ task_categories:
6
+ - time-series-forecasting
7
+ tags:
8
+ - fresh-retail
9
+ - censored-demand
10
+ - hourly-stock-status
11
+ size_categories:
12
+ - 1M<n<10M
13
+ pretty_name: FreshRetailNet-LT
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: data/train.parquet
19
+ - split: eval
20
+ path: data/eval.parquet
21
  ---
22
+
23
+ # FreshRetailNet-LT
24
+
25
+ ## Dataset Overview
26
+ FreshRetailNet-LT is the first large-scale benchmark for censored demand estimation in the fresh retail domain, **incorporating approximately 20% organically occurring stockout data**. It comprises more than 20K store-product time series of detailed hourly sales data from 1057 stores in 18 major cities, encompassing 576 perishable SKUs with meticulous stockout event annotations. The hourly stock status records unique to this dataset, combined with rich contextual covariates including promotional discounts, precipitation, and other temporal features, enable innovative research beyond existing solutions.
27
+
28
+ - [Technical Report](It will be posted later.) - Discover the methodology and technical details behind FreshRetailNet-LT.
29
+ - [Github Repo](It will be posted later.) - Access the complete pipeline used to train and evaluate.
30
+
31
+ This dataset is ready for commercial/non-commercial use.
32
+
33
+
34
+ ## Data Fields
35
+ |Field|Type|Description|
36
+ |:---|:---|:---|
37
+ |city_id|int64|The encoded city id|
38
+ |store_id|int64|The encoded store id|
39
+ |management_group_id|int64|The encoded management group id|
40
+ |first_category_id|int64|The encoded first category id|
41
+ |second_category_id|int64|The encoded second category id|
42
+ |third_category_id|int64|The encoded third category id|
43
+ |product_id|int64|The encoded product id|
44
+ |dt|string|The date|
45
+ |sale_amount|float64|The daily sales amount after global normalization (Multiplied by a specific coefficient)|
46
+ |hours_sale|Sequence(float64)|The hourly sales amount after global normalization (Multiplied by a specific coefficient)|
47
+ |stock_hour6_22_cnt|int32|The number of out-of-stock hours between 6:00 and 22:00|
48
+ |hours_stock_status|Sequence(int32)|The hourly out-of-stock status|
49
+ |discount|float64|The discount rate (1.0 means no discount, 0.9 means 10% off)|
50
+ |holiday_flag|int32|Holiday indicator|
51
+ |activity_flag|int32|Activity indicator|
52
+ |precpt|float64|The total precipitation|
53
+ |avg_temperature|float64|The average temperature|
54
+ |avg_humidity|float64|The average humidity|
55
+ |avg_wind_level|float64|The average wind force|
56
+
57
+ ### Hierarchical structure
58
+ - **warehouse**: city_id > store_id
59
+ - **product category**: management_group_id > first_category_id > second_category_id > third_category_id > product_id
60
+
61
+
62
+
63
+ ## How to use it
64
+
65
+ You can load the dataset with the following lines of code.
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+ dataset = load_dataset("Dingdong-Inc/FreshRetailNet-LT")
70
+ print(dataset)
71
+ ```
72
+ ```text
73
+ DatasetDict({
74
+ train: Dataset({
75
+ features: ['city_id', 'store_id', 'management_group_id', 'first_category_id', 'second_category_id', 'third_category_id', 'product_id', 'dt', 'sale_amount', 'hours_sale', 'stock_hour6_22_cnt', 'hours_stock_status', 'activity_flag', 'discount', 'holiday_flag', 'precpt', 'avg_temperature', 'avg_humidity', 'avg_wind_level'],
76
+ num_rows: 7869549
77
+ })
78
+ eval: Dataset({
79
+ features: ['city_id', 'store_id', 'management_group_id', 'first_category_id', 'second_category_id', 'third_category_id', 'product_id', 'dt', 'sale_amount', 'hours_sale', 'stock_hour6_22_cnt', 'hours_stock_status', 'activity_flag', 'discount', 'holiday_flag', 'precpt', 'avg_temperature', 'avg_humidity', 'avg_wind_level'],
80
+ num_rows: 70000
81
+ })
82
+ })
83
+ ```
84
+
85
+
86
+ ## License/Terms of Use
87
+
88
+ This dataset is licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0) available at https://creativecommons.org/licenses/by/4.0/legalcode.
89
+
90
+ **Data Developer:** Dingdong-Inc
91
+
92
+
93
+ ### Use Case: <br>
94
+ Developers researching latent demand recovery and demand forecasting techniques. <br>
95
+
96
+ ### Release Date: <br>
97
+ 02/02/2026 <br>
98
+
99
+
100
+ ## Data Version
101
+ 1.0 (02/02/2026)
102
+
103
+
104
+ ## Intended use
105
+
106
+ The FreshRetailNet-LT Dataset is intended to be freely used by the community to continue to improve latent demand recovery and demand forecasting techniques.
107
+ **However, for each dataset an user elects to use, the user is responsible for checking if the dataset license is fit for the intended purpose**.
108
+
109
+
110
+ ## Citation
111
+
112
+ If you find the data useful, please cite:
113
+ ```
114
+ @article{2026FreshRetailNet-LT,
115
+ title={FreshRetailNet-LT: A Stockout-Annotated Censored Demand Dataset for Latent Demand Recovery and Forecasting in Fresh Retail},
116
+ author={Anonymous Author(s)},
117
+ year={2026},
118
+ eprint={2506.xxxxx},
119
+ archivePrefix={arXiv},
120
+ primaryClass={cs.LG},
121
+ url={https://arxiv.org/abs/2506.xxxxx},
122
+ }
123
+ ```
data/eval.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:370ca7f995d2a059744e1659eb681e60db694bec2f80a84252426afdd2b6d626
3
+ size 2009424
data/train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e744c537ed16a8254c50f8456de7c5614866d4d8b6787e3cc3b67be02ea2f1e3
3
+ size 315398578