Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,28 +28,22 @@ To be published in: *Advanced Engineering Informatics*.
|
|
| 28 |
|
| 29 |
## Final Article Release
|
| 30 |
|
| 31 |
-
The finalized article-release dataset is
|
| 32 |
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
```text
|
| 38 |
-
ALL_benchmark_W60.parquet
|
| 39 |
-
ALL_benchmark_W60.xlsx
|
| 40 |
-
```
|
| 41 |
|
| 42 |
The Parquet file is recommended for programmatic use. The Excel file is provided for convenient inspection.
|
| 43 |
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
[`article_release/DOWNLOAD_DATA.md`](article_release/DOWNLOAD_DATA.md)
|
| 47 |
|
| 48 |
-
|
| 49 |
|
| 50 |
-
|
| 51 |
|
| 52 |
-
|
| 53 |
|
| 54 |
The final article-release table contains the integrated W60 processed benchmark used in the study, including shipment identifiers, timestamps, resampled multi-sensor temperature records, engineered W60 features, risk labels, future severe-risk prediction targets, cause flags for explanation consistency checking, and evaluation/audit-related fields.
|
| 55 |
|
|
@@ -85,6 +79,8 @@ This dataset supports research on:
|
|
| 85 |
```text
|
| 86 |
Cold-Chain-Transportation-Strawberry/
|
| 87 |
├── article_release/
|
|
|
|
|
|
|
| 88 |
│ └── DOWNLOAD_DATA.md
|
| 89 |
├── data/
|
| 90 |
│ ├── w60_S1.parquet
|
|
@@ -101,22 +97,27 @@ Cold-Chain-Transportation-Strawberry/
|
|
| 101 |
└── README.md
|
| 102 |
```
|
| 103 |
|
| 104 |
-
The finalized
|
| 105 |
|
| 106 |
## Recommended Files
|
| 107 |
|
| 108 |
-
The authoritative processed dataset for the accepted ADVEI article is
|
| 109 |
|
| 110 |
-
|
|
|
|
|
|
|
| 111 |
|
| 112 |
-
The
|
| 113 |
|
| 114 |
```text
|
| 115 |
-
ALL_benchmark_W60.
|
| 116 |
-
ALL_benchmark_W60.xlsx
|
| 117 |
```
|
| 118 |
|
| 119 |
-
The Parquet file is recommended for programmatic analysis. The Excel file contains the
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
The six shipment-level files under `data/` are retained for shipment-level inspection:
|
| 122 |
|
|
@@ -137,7 +138,7 @@ data/w60_all.parquet
|
|
| 137 |
|
| 138 |
The folders `benchmark_v2/` and `benchmark_v2_pca/` are earlier or auxiliary processed releases. They are retained for transparency but are not the primary files for reproducing the accepted ADVEI article.
|
| 139 |
|
| 140 |
-
For the final article release, use the
|
| 141 |
|
| 142 |
---
|
| 143 |
|
|
@@ -162,16 +163,21 @@ Future labels such as `y_next_*` and time-to-event fields such as `eta_to_R2_*`
|
|
| 162 |
|
| 163 |
## How to Load
|
| 164 |
|
| 165 |
-
First, download the finalized article-release files from:
|
| 166 |
-
|
| 167 |
-
[Google Drive article-release folder](https://drive.google.com/drive/folders/1nGwz-wM6gM68djXA60qpG-73-kPFidKW?usp=sharing)
|
| 168 |
-
|
| 169 |
### Load the final article-release Parquet file
|
| 170 |
|
| 171 |
```python
|
|
|
|
| 172 |
import pandas as pd
|
| 173 |
|
| 174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
|
| 176 |
print(df.shape)
|
| 177 |
print(df.head())
|
|
@@ -180,15 +186,42 @@ print(df.head())
|
|
| 180 |
### Load the Excel version
|
| 181 |
|
| 182 |
```python
|
|
|
|
| 183 |
import pandas as pd
|
| 184 |
|
| 185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 186 |
|
| 187 |
print(df.shape)
|
| 188 |
print(df.head())
|
| 189 |
```
|
| 190 |
|
| 191 |
-
###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
|
| 193 |
```python
|
| 194 |
from huggingface_hub import hf_hub_download
|
|
@@ -792,12 +825,13 @@ T_*
|
|
| 792 |
dur_*
|
| 793 |
```
|
| 794 |
|
| 795 |
-
Users should
|
| 796 |
|
| 797 |
---
|
| 798 |
|
| 799 |
## Changelog
|
| 800 |
|
| 801 |
-
- `article_release`: Final processed benchmark
|
| 802 |
-
-
|
|
|
|
| 803 |
- Earlier folders such as `benchmark_v2/` and `benchmark_v2_pca/` are retained as legacy or auxiliary processed releases.
|
|
|
|
| 28 |
|
| 29 |
## Final Article Release
|
| 30 |
|
| 31 |
+
The finalized article-release dataset is hosted directly in this Hugging Face repository and can be viewed or downloaded using the links below:
|
| 32 |
|
| 33 |
+
| File | Hugging Face |
|
| 34 |
+
|---|---|
|
| 35 |
+
| `ALL_benchmark_W60.parquet` | [View or download](article_release/ALL_benchmark_W60.parquet) |
|
| 36 |
+
| `ALL_benchmark_W60.xlsx` | [View or download](article_release/ALL_benchmark_W60.xlsx) |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
The Parquet file is recommended for programmatic use. The Excel file is provided for convenient inspection.
|
| 39 |
|
| 40 |
+
If the Hugging Face preview or download is temporarily unavailable, the same files can be downloaded from the following public Google Drive backup folder:
|
|
|
|
|
|
|
| 41 |
|
| 42 |
+
[Download from the Google Drive backup mirror](https://drive.google.com/drive/folders/1nGwz-wM6gM68djXA60qpG-73-kPFidKW?usp=sharing)
|
| 43 |
|
| 44 |
+
Detailed download instructions are available at:
|
| 45 |
|
| 46 |
+
[`article_release/DOWNLOAD_DATA.md`](article_release/DOWNLOAD_DATA.md)
|
| 47 |
|
| 48 |
The final article-release table contains the integrated W60 processed benchmark used in the study, including shipment identifiers, timestamps, resampled multi-sensor temperature records, engineered W60 features, risk labels, future severe-risk prediction targets, cause flags for explanation consistency checking, and evaluation/audit-related fields.
|
| 49 |
|
|
|
|
| 79 |
```text
|
| 80 |
Cold-Chain-Transportation-Strawberry/
|
| 81 |
├── article_release/
|
| 82 |
+
│ ├── ALL_benchmark_W60.parquet
|
| 83 |
+
│ ├── ALL_benchmark_W60.xlsx
|
| 84 |
│ └── DOWNLOAD_DATA.md
|
| 85 |
├── data/
|
| 86 |
│ ├── w60_S1.parquet
|
|
|
|
| 97 |
└── README.md
|
| 98 |
```
|
| 99 |
|
| 100 |
+
The two finalized files under `article_release/` are the primary files for reproducing or inspecting the dataset used in the accepted ADVEI article. A public Google Drive backup mirror is provided in `article_release/DOWNLOAD_DATA.md`.
|
| 101 |
|
| 102 |
## Recommended Files
|
| 103 |
|
| 104 |
+
The authoritative processed dataset for the accepted ADVEI article is:
|
| 105 |
|
| 106 |
+
```text
|
| 107 |
+
article_release/ALL_benchmark_W60.parquet
|
| 108 |
+
```
|
| 109 |
|
| 110 |
+
The corresponding Excel file is:
|
| 111 |
|
| 112 |
```text
|
| 113 |
+
article_release/ALL_benchmark_W60.xlsx
|
|
|
|
| 114 |
```
|
| 115 |
|
| 116 |
+
The Parquet file is recommended for programmatic analysis. The Excel file contains the same article-release dataset in a format suitable for convenient inspection.
|
| 117 |
+
|
| 118 |
+
If either Hugging Face file is temporarily unavailable, use the public Google Drive backup mirror:
|
| 119 |
+
|
| 120 |
+
[Open the Google Drive backup folder](https://drive.google.com/drive/folders/1nGwz-wM6gM68djXA60qpG-73-kPFidKW?usp=sharing)
|
| 121 |
|
| 122 |
The six shipment-level files under `data/` are retained for shipment-level inspection:
|
| 123 |
|
|
|
|
| 138 |
|
| 139 |
The folders `benchmark_v2/` and `benchmark_v2_pca/` are earlier or auxiliary processed releases. They are retained for transparency but are not the primary files for reproducing the accepted ADVEI article.
|
| 140 |
|
| 141 |
+
For the final article release, use the files under `article_release/`.
|
| 142 |
|
| 143 |
---
|
| 144 |
|
|
|
|
| 163 |
|
| 164 |
## How to Load
|
| 165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
### Load the final article-release Parquet file
|
| 167 |
|
| 168 |
```python
|
| 169 |
+
from huggingface_hub import hf_hub_download
|
| 170 |
import pandas as pd
|
| 171 |
|
| 172 |
+
repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry"
|
| 173 |
+
|
| 174 |
+
path = hf_hub_download(
|
| 175 |
+
repo_id=repo_id,
|
| 176 |
+
filename="article_release/ALL_benchmark_W60.parquet",
|
| 177 |
+
repo_type="dataset"
|
| 178 |
+
)
|
| 179 |
+
|
| 180 |
+
df = pd.read_parquet(path)
|
| 181 |
|
| 182 |
print(df.shape)
|
| 183 |
print(df.head())
|
|
|
|
| 186 |
### Load the Excel version
|
| 187 |
|
| 188 |
```python
|
| 189 |
+
from huggingface_hub import hf_hub_download
|
| 190 |
import pandas as pd
|
| 191 |
|
| 192 |
+
repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry"
|
| 193 |
+
|
| 194 |
+
path = hf_hub_download(
|
| 195 |
+
repo_id=repo_id,
|
| 196 |
+
filename="article_release/ALL_benchmark_W60.xlsx",
|
| 197 |
+
repo_type="dataset"
|
| 198 |
+
)
|
| 199 |
+
|
| 200 |
+
df = pd.read_excel(path)
|
| 201 |
|
| 202 |
print(df.shape)
|
| 203 |
print(df.head())
|
| 204 |
```
|
| 205 |
|
| 206 |
+
### Backup Download
|
| 207 |
+
|
| 208 |
+
If the Hugging Face preview or download is temporarily unavailable, download the same files from the public Google Drive backup folder:
|
| 209 |
+
|
| 210 |
+
[Google Drive backup folder](https://drive.google.com/drive/folders/1nGwz-wM6gM68djXA60qpG-73-kPFidKW?usp=sharing)
|
| 211 |
+
|
| 212 |
+
After downloading, the files can be loaded locally:
|
| 213 |
+
|
| 214 |
+
```python
|
| 215 |
+
import pandas as pd
|
| 216 |
+
|
| 217 |
+
df_parquet = pd.read_parquet("ALL_benchmark_W60.parquet")
|
| 218 |
+
df_excel = pd.read_excel("ALL_benchmark_W60.xlsx")
|
| 219 |
+
|
| 220 |
+
print(df_parquet.shape)
|
| 221 |
+
print(df_excel.shape)
|
| 222 |
+
```
|
| 223 |
+
|
| 224 |
+
### Load a shipment-level Parquet file
|
| 225 |
|
| 226 |
```python
|
| 227 |
from huggingface_hub import hf_hub_download
|
|
|
|
| 825 |
dur_*
|
| 826 |
```
|
| 827 |
|
| 828 |
+
Users should inspect the column names in `article_release/ALL_benchmark_W60.parquet` for the complete feature list.
|
| 829 |
|
| 830 |
---
|
| 831 |
|
| 832 |
## Changelog
|
| 833 |
|
| 834 |
+
- `article_release`: Final processed benchmark files and download instructions for the accepted ADVEI article.
|
| 835 |
+
- `ALL_benchmark_W60.parquet` and `ALL_benchmark_W60.xlsx` are hosted directly in the Hugging Face repository.
|
| 836 |
+
- A public Google Drive folder is maintained as a backup mirror in case Hugging Face preview or download is temporarily unavailable.
|
| 837 |
- Earlier folders such as `benchmark_v2/` and `benchmark_v2_pca/` are retained as legacy or auxiliary processed releases.
|