NifferLi commited on
Commit
cdf5d96
·
verified ·
1 Parent(s): 39d7201

Update article_release/README.md

Browse files
Files changed (1) hide show
  1. article_release/README.md +129 -33
article_release/README.md CHANGED
@@ -1,63 +1,159 @@
1
  # Article-Release Dataset Downloads
2
 
3
- The article-release versions of the benchmark dataset are currently distributed through a public Google Drive folder.
4
 
5
- ## Primary Download
6
 
7
- Please use the following Google Drive folder as the primary download source:
 
 
 
8
 
9
- [Download the article-release dataset from Google Drive]()
10
 
11
- The folder contains:
12
 
13
- | File | Format | Recommended use |
14
- |---|---|---|
15
- | `ALL_benchmark_W60.xlsx` | Microsoft Excel | Convenient inspection and use in spreadsheet software |
16
- | `ALL_benchmark_W60.parquet` | Apache Parquet | Recommended for programmatic analysis and efficient data loading |
17
 
18
- Both files contain the same finalized article-release benchmark dataset:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  - **14,398 rows**
21
  - **107 columns**
22
- - W60 benchmark data used for the article release
 
 
 
 
 
 
23
 
24
- ## Reason for Using Google Drive
25
 
26
- The two binary files were originally hosted directly in this Hugging Face repository. However, repeated HTTP 403 errors occurred when Hugging Face attempted to retrieve the underlying files from its Xet/CAS storage service.
27
 
28
- The repository entries and file pointers could be created successfully, but the actual binary files could not be consistently previewed or downloaded through the Hugging Face interface. This issue was observed for both Excel and Parquet files and persisted after repeated uploads, new filenames, and newly generated file hashes.
29
 
30
- The files themselves were validated locally and could be opened and read normally. The problem therefore appears to be related to the Hugging Face Xet/CAS storage-access layer rather than file corruption or dataset formatting.
 
 
 
31
 
32
- To ensure that the dataset remains immediately and publicly accessible, the two files are temporarily distributed through Google Drive. The inaccessible Hugging Face-hosted binary copies were removed to avoid broken download links.
33
 
34
- The Hugging Face repository remains the official location for:
35
 
36
- - dataset documentation;
37
- - benchmark definitions;
38
- - code and notebooks;
39
- - metadata and supporting files;
40
- - release notes;
41
- - version history.
42
 
43
- Direct hosting on Hugging Face may be restored after the Xet/CAS storage issue is resolved.
44
 
45
- ## Access
46
 
47
- The Google Drive folder is configured as:
 
 
48
 
49
- > **Anyone with the link → Viewer**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
- No access request should be required.
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
- If Google Drive asks you to request access, please report the issue through the Hugging Face repository discussion page.
 
 
54
 
55
- ## Loading the Dataset
56
 
57
- ### Python Parquet
58
 
59
  ```python
60
  import pandas as pd
61
 
62
- df = pd.read_parquet("ALL_benchmark_W60.parquet")
63
- print(df.shape)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Article-Release Dataset Downloads
2
 
3
+ The finalized article-release dataset is hosted directly in this Hugging Face repository.
4
 
5
+ ## Primary Download — Hugging Face
6
 
7
+ | File | Format | View on Hugging Face | Direct download |
8
+ |---|---|---|---|
9
+ | `ALL_benchmark_W60.parquet` | Apache Parquet | [View file](https://huggingface.co/datasets/NifferLi/Cold-Chain-Transportation-Strawberry/blob/main/article_release/ALL_benchmark_W60.parquet) | [Download](https://huggingface.co/datasets/NifferLi/Cold-Chain-Transportation-Strawberry/resolve/main/article_release/ALL_benchmark_W60.parquet?download=true) |
10
+ | `ALL_benchmark_W60.xlsx` | Microsoft Excel | [View file](https://huggingface.co/datasets/NifferLi/Cold-Chain-Transportation-Strawberry/blob/main/article_release/ALL_benchmark_W60.xlsx) | [Download](https://huggingface.co/datasets/NifferLi/Cold-Chain-Transportation-Strawberry/resolve/main/article_release/ALL_benchmark_W60.xlsx?download=true) |
11
 
12
+ The Parquet file is recommended for programmatic analysis. The Excel file is provided for convenient inspection and use in spreadsheet software.
13
 
14
+ ## Backup Download — Google Drive
15
 
16
+ If the Hugging Face preview or download is temporarily unavailable, the same article-release files can be downloaded from the following public Google Drive backup folder:
 
 
 
17
 
18
+ [Open the Google Drive backup folder](https://drive.google.com/drive/folders/1nGwz-wM6gM68djXA60qpG-73-kPFidKW?usp=sharing)
19
+
20
+ The backup folder contains:
21
+
22
+ ```text
23
+ ALL_benchmark_W60.parquet
24
+ ALL_benchmark_W60.xlsx
25
+ ```
26
+
27
+ The Google Drive folder is configured as:
28
+
29
+ > **Anyone with the link → Viewer**
30
+
31
+ No access request should normally be required.
32
+
33
+ ## Dataset Description
34
+
35
+ Both files contain the same finalized article-release benchmark dataset in different formats.
36
+
37
+ The dataset contains:
38
 
39
  - **14,398 rows**
40
  - **107 columns**
41
+ - data from six strawberry cold-chain shipments;
42
+ - resampled multi-sensor temperature measurements;
43
+ - engineered W60 features;
44
+ - current risk-stage labels;
45
+ - future severe-risk prediction targets;
46
+ - explanation-consistency cause flags;
47
+ - data-quality, confidence, and audit-related fields.
48
 
49
+ ## Recommended Format
50
 
51
+ ### Parquet
52
 
53
+ Use `ALL_benchmark_W60.parquet` for:
54
 
55
+ - Python or R analysis;
56
+ - machine-learning experiments;
57
+ - preservation of data types;
58
+ - efficient loading and storage.
59
 
60
+ ### Excel
61
 
62
+ Use `ALL_benchmark_W60.xlsx` for:
63
 
64
+ - manual inspection;
65
+ - spreadsheet-based review;
66
+ - convenient viewing of columns and values.
 
 
 
67
 
68
+ ## Loading with Python
69
 
70
+ ### Parquet
71
 
72
+ ```python
73
+ from huggingface_hub import hf_hub_download
74
+ import pandas as pd
75
 
76
+ repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry"
77
+
78
+ path = hf_hub_download(
79
+ repo_id=repo_id,
80
+ filename="article_release/ALL_benchmark_W60.parquet",
81
+ repo_type="dataset"
82
+ )
83
+
84
+ df = pd.read_parquet(path)
85
+
86
+ print(df.shape)
87
+ print(df.head())
88
+ ```
89
+
90
+ ### Excel
91
 
92
+ ```python
93
+ from huggingface_hub import hf_hub_download
94
+ import pandas as pd
95
+
96
+ repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry"
97
+
98
+ path = hf_hub_download(
99
+ repo_id=repo_id,
100
+ filename="article_release/ALL_benchmark_W60.xlsx",
101
+ repo_type="dataset"
102
+ )
103
+
104
+ df = pd.read_excel(path)
105
 
106
+ print(df.shape)
107
+ print(df.head())
108
+ ```
109
 
110
+ ## Loading Files Downloaded from Google Drive
111
 
112
+ If the files were downloaded from the Google Drive backup folder, load them directly from the local directory:
113
 
114
  ```python
115
  import pandas as pd
116
 
117
+ df_parquet = pd.read_parquet("ALL_benchmark_W60.parquet")
118
+ df_excel = pd.read_excel("ALL_benchmark_W60.xlsx")
119
+
120
+ print(df_parquet.shape)
121
+ print(df_excel.shape)
122
+ ```
123
+
124
+ ## Availability Note
125
+
126
+ Hugging Face is the primary hosting and documentation platform for this dataset.
127
+
128
+ The public Google Drive folder is maintained as a backup mirror to ensure continuous access if the Hugging Face file preview, content-delivery service, or direct download is temporarily unavailable.
129
+
130
+ Both locations provide the same finalized article-release files.
131
+
132
+ ## Citation
133
+
134
+ When using this dataset, please cite the associated article:
135
+
136
+ ```text
137
+ Li, H., Uygun, Ö., Yu, X., Zhou, Y., Chang, X., & Chen, C.-H.
138
+ A Human-Centric Edge-Oriented Decision Support System for Cold Chain Transportation:
139
+ Early Warning, Trigger-Time Explanation, and Prescriptive Action Ranking.
140
+ Advanced Engineering Informatics, forthcoming.
141
+ ```
142
+
143
+ The DOI and final bibliographic details will be added once available.
144
+
145
+ The dataset repository may also be cited as:
146
+
147
+ ```bibtex
148
+ @dataset{li_coldchain_transportation_strawberry_advei,
149
+ author = {Li, Hu},
150
+ title = {Cold-Chain Transportation Strawberry Dataset for ADVEI Article Release},
151
+ publisher = {Hugging Face},
152
+ year = {2026},
153
+ note = {Processed dataset for the accepted Advanced Engineering Informatics article}
154
+ }
155
+ ```
156
+
157
+ ## Contact
158
+
159
+ For questions about the dataset, file contents, or download access, please open a discussion in the Hugging Face dataset repository.