diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..685a56e4a36627f5efbff65cfaa85faf0a29729e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,66 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.avro filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text +article_release/ALL_benchmark_W60.xlsx filter=lfs diff=lfs merge=lfs -text +Cold-Chain-Transportation-Strawberry-Release/ALL_benchmark_W60.xlsx filter=lfs diff=lfs merge=lfs -text +article_release/ALL_benchmark_W60/ALL_benchmark_W60.xlsx filter=lfs diff=lfs merge=lfs -text +article_release/_xet_repair_test/ALL_benchmark_W60.xlsx filter=lfs diff=lfs merge=lfs -text +article_release/_fallback_test/ALL_benchmark_W60.xlsx filter=lfs diff=lfs merge=lfs -text +article_release/ALL_benchmark_W60_release_v1.xlsx filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8555d8e10f3a6475cdca539eddd5546404fe11c3 --- /dev/null +++ b/README.md @@ -0,0 +1,837 @@ +--- +license: apache-2.0 +language: + - en +pretty_name: Cold-Chain Transportation Strawberry Dataset for ADVEI Article Release +tags: + - time-series + - cold-chain + - early-warning + - risk-prediction + - human-centric-ai + - supply-chain + - explainability + - prescriptive-analytics +task_categories: + - tabular-classification +size_categories: + - 10K **Anyone with the link → Viewer** + +No access request should normally be required. + +## Dataset Description + +Both files contain the same finalized article-release benchmark dataset in different formats. + +The dataset contains: + +- **14,398 rows** +- **107 columns** +- data from six strawberry cold-chain shipments; +- resampled multi-sensor temperature measurements; +- engineered W60 features; +- current risk-stage labels; +- future severe-risk prediction targets; +- explanation-consistency cause flags; +- data-quality, confidence, and audit-related fields. + +## Recommended Format + +### Parquet + +Use `ALL_benchmark_W60.parquet` for: + +- Python or R analysis; +- machine-learning experiments; +- preservation of data types; +- efficient loading and storage. + +### Excel + +Use `ALL_benchmark_W60.xlsx` for: + +- manual inspection; +- spreadsheet-based review; +- convenient viewing of columns and values. + +## Loading with Python + +### Parquet + +```python +from huggingface_hub import hf_hub_download +import pandas as pd + +repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry" + +path = hf_hub_download( + repo_id=repo_id, + filename="article_release/ALL_benchmark_W60.parquet", + repo_type="dataset" +) + +df = pd.read_parquet(path) + +print(df.shape) +print(df.head()) +``` + +### Excel + +```python +from huggingface_hub import hf_hub_download +import pandas as pd + +repo_id = "NifferLi/Cold-Chain-Transportation-Strawberry" + +path = hf_hub_download( + repo_id=repo_id, + filename="article_release/ALL_benchmark_W60.xlsx", + repo_type="dataset" +) + +df = pd.read_excel(path) + +print(df.shape) +print(df.head()) +``` + +## Loading Files Downloaded from Google Drive + +If the files were downloaded from the Google Drive backup folder, load them directly from the local directory: + +```python +import pandas as pd + +df_parquet = pd.read_parquet("ALL_benchmark_W60.parquet") +df_excel = pd.read_excel("ALL_benchmark_W60.xlsx") + +print(df_parquet.shape) +print(df_excel.shape) +``` + +## Availability Note + +Hugging Face is the primary hosting and documentation platform for this dataset. + +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. + +Both locations provide the same finalized article-release files. + +## Citation + +When using this dataset, please cite the associated article: + +```text +Li, H., Uygun, Ö., Yu, X., Zhou, Y., Chang, X., & Chen, C.-H. +A Human-Centric Edge-Oriented Decision Support System for Cold Chain Transportation: +Early Warning, Trigger-Time Explanation, and Prescriptive Action Ranking. +Advanced Engineering Informatics, forthcoming. +``` + +The DOI and final bibliographic details will be added once available. + +The dataset repository may also be cited as: + +```bibtex +@dataset{li_coldchain_transportation_strawberry_advei, + author = {Li, Hu}, + title = {Cold-Chain Transportation Strawberry Dataset for ADVEI Article Release}, + publisher = {Hugging Face}, + year = {2026}, + note = {Processed dataset for the accepted Advanced Engineering Informatics article} +} +``` + +## Contact + +For questions about the dataset, file contents, or download access, please open a discussion in the Hugging Face dataset repository. \ No newline at end of file diff --git a/benchmark_v2/S1_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S1_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e0a4354f7c0970654cc7bf5dc6c4f5e23a68dc9b --- /dev/null +++ b/benchmark_v2/S1_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849e959ffddf0a524202dee72b3d337a8f06c6956f94585b1da3f2fd04eadc25 +size 145155 diff --git a/benchmark_v2/S2_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S2_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f5e8a5a732c123e8c423dfb537d3989524b53d79 --- /dev/null +++ b/benchmark_v2/S2_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e086dde035554a9535104481196ed801850125690a9fc8bea1dcbd23e7af073c +size 135329 diff --git a/benchmark_v2/S3_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S3_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..26ce482b7bd2b0916d7c8779d8d7b4ff8d705952 --- /dev/null +++ b/benchmark_v2/S3_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3267578e79ef349a88a939b42d6fec215d8b69c520def1f2b218f4067e3e6008 +size 120816 diff --git a/benchmark_v2/S4_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S4_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cf5a36e5aa58d7d08fffd473ec0b1a52980518bd --- /dev/null +++ b/benchmark_v2/S4_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7971fb61b41c0fadfe915f41beb5c1fe7c828c9b4e1190eb4c698051e1921cb +size 120750 diff --git a/benchmark_v2/S5_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S5_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a6ab1dfca06a1d1b6772309b1080b510d23b7696 --- /dev/null +++ b/benchmark_v2/S5_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6157685e2a53a4a483c7cae438f4f20fa87314aeb7433639abaad69d71faed +size 105608 diff --git a/benchmark_v2/S6_aligned_strict_linear_with_labels.parquet b/benchmark_v2/S6_aligned_strict_linear_with_labels.parquet new file mode 100644 index 0000000000000000000000000000000000000000..70de5a4ebb30dd5a1ebdd06b5fc2229bb21fc16f --- /dev/null +++ b/benchmark_v2/S6_aligned_strict_linear_with_labels.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d130834bbcf92c976e7c8c466c8797955f2bfb02d46ba887323e6458e1c5c57f +size 120205 diff --git a/benchmark_v2/all.parquet b/benchmark_v2/all.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c0b6c3c28b708a93c4e3fc6936ce9d9854ad57ad --- /dev/null +++ b/benchmark_v2/all.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd1f2458c7c3d516e3c8bb6589968dd81610b8cd3d218fa10efdd271f4f7a71e +size 412319 diff --git a/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..85dcf3f61d22b36e997debe5a1ac3c277883b27d --- /dev/null +++ b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b93a07ca4312035757a76fe8ff37f62f90819a985a723806bfb75aa1adb91dd +size 256654 diff --git a/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cac0233d228151b5b64747d99424d70e7fd0d4a8 --- /dev/null +++ b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770ea2bfbe8785c7e6e8d4e138604737ad2143a8c739af03f54018c3c7c0dc78 +size 368169 diff --git a/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f0aed9a4e3d937210fec60cc836ba314bdab3ef6 --- /dev/null +++ b/benchmark_v2_pca/S1_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4517612a17bffdb9b238accbfe6f1ba143776bc2622ab311ac0280a9d7ad28b6 +size 702743 diff --git a/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f1cac71a7686b03f800067b232acaa8accc3929c --- /dev/null +++ b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671cf1474b6923a35ff2bbfa120b17c63f94d09425a769f076a2b4dd2a2a4c4e +size 276544 diff --git a/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..34f84f39cf724e1c98485eb4ee592336aee2b5f0 --- /dev/null +++ b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893d46d46033fcb1fe48845750e24dc37d05f1e21220d3f921157868c69f08df +size 417767 diff --git a/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7d6a19d6047df4023872dcf1bc77c5956e0ddde2 --- /dev/null +++ b/benchmark_v2_pca/S2_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61c22f6bcf81997915fc307b99c7ba2c88a65e7811d42716a76f0b0dc3ccf22e +size 841441 diff --git a/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3000ac7d30c1d45f06e1333f9ac8a5f75900833a --- /dev/null +++ b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea90b2e7bf93c0d4c23957d48f2c72e17f919c69eb5baa88afbd718f45f9de73 +size 244743 diff --git a/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6aaa157d672ce4a2ddbf1b73725d478c0bb9a853 --- /dev/null +++ b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69013599b75abfcfc4b08cd6139d5d9675a324a5f7c5b4787dd86585d0bb598 +size 368682 diff --git a/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9f730bc69f197e8a88659ff7995b7defc72a2abc --- /dev/null +++ b/benchmark_v2_pca/S3_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd2c6cf3244e859e51c83878c258213b49f1313fe7d7f056ef8b99fdcac6563 +size 740508 diff --git a/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..916c137ff1c42d954fc867d989060cc9f97aab3a --- /dev/null +++ b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7211d818af77d31b3e8d271bd917b63c577e64ff2518cc6a336974207cdc90 +size 244805 diff --git a/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1e609688ae10b35456071c742345d0c9ef352e0a --- /dev/null +++ b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082bbe522aaeb76ec9bfb1acb8eb93261d88935a132a969152ec1f5ba4fe2642 +size 368864 diff --git a/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9713763149b1efdbbaeb39b6dfa7b942da58fbc7 --- /dev/null +++ b/benchmark_v2_pca/S4_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fad969e5eee6b8398b24f6f0a4affdb6a0a3aa3533749fdfd4f0f17a2923a9e +size 741058 diff --git a/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3bfa0e6b80208ad578f04d86bdc448db15b1d4a0 --- /dev/null +++ b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298482458593c3696ba2663d63302ca23adfcd4f31661443347be9aeb696c9a0 +size 209853 diff --git a/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ae4da852485f0f79955a19c17902adffee662fd1 --- /dev/null +++ b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6178e8f41a1cb927b229bd21eca494866eff61b946a144f306293439ad453f06 +size 314190 diff --git a/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c89a3ea85138abbbce656175706d5bba29c0b8bb --- /dev/null +++ b/benchmark_v2_pca/S5_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b63a8b1cdf07650d0dfad5e703bfbe270bdc1e924755b044f50aeb841a3a13 +size 627254 diff --git a/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca10.parquet b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9a8c7f19e85a63e527975a9c37be78e971c2795c --- /dev/null +++ b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc03c7a51eddac88490194e000b7e42857a0a4c44428ca5aaf1ae6d20e056388 +size 249492 diff --git a/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca20.parquet b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6e49ee1c30a93624c105f49da8d3911e59ff3da5 --- /dev/null +++ b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392ae5cb4ac7fb074924d9ef8b211731075d1fe68d1bebfb25dcff2c4e55f661 +size 378779 diff --git a/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca50.parquet b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..dcee94d16100325064151f9f5e9600f2d7afb8fe --- /dev/null +++ b/benchmark_v2_pca/S6_aligned_strict_linear_with_labels_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f31e25a5eed3285a0644433f7fdb811f2b9721ec30b4379eeb8548fcde6a33 +size 766689 diff --git a/benchmark_v2_pca/all_pca10.parquet b/benchmark_v2_pca/all_pca10.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c9df023b3409e2379154815a356de4e2f6b09b4f --- /dev/null +++ b/benchmark_v2_pca/all_pca10.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744990c13bdff07f2dad46e86b7b06536063d002165126cd293767e3995ea8e3 +size 1159256 diff --git a/benchmark_v2_pca/all_pca20.parquet b/benchmark_v2_pca/all_pca20.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a456c300b6229d19c73644868d438dbf637b5f6b --- /dev/null +++ b/benchmark_v2_pca/all_pca20.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cdbc1bda2b9acfda2c3f9d04fca597d63646241b57167b0ff857d02dccd9a2 +size 1906313 diff --git a/benchmark_v2_pca/all_pca50.parquet b/benchmark_v2_pca/all_pca50.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8304851edcfe6d613d05353b7ccb43072909ca9b --- /dev/null +++ b/benchmark_v2_pca/all_pca50.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172ec805cd326f3cdb0aa0ce8d7a91749172406447e8d51eb964fa52413f3680 +size 4147705 diff --git a/data/w60_S1.parquet b/data/w60_S1.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a626bed216b2cc2466bd9f29602c786a04713314 --- /dev/null +++ b/data/w60_S1.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2499dc4fa8abd1f6f0691d523c4d6f8ec9e5356bc9350d85ad07d0aecaacfe2 +size 350830 diff --git a/data/w60_S2.parquet b/data/w60_S2.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5610a6594294119b4e21a40d293dac4b9dea26c4 --- /dev/null +++ b/data/w60_S2.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c062a86d77db6071d67e789f5d227e55ae7101c87a6cdb9e89bd0c37e75eac +size 407018 diff --git a/data/w60_S3.parquet b/data/w60_S3.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1c50d6d8fa2b1df909d2b7df6d8abd62837a38ff --- /dev/null +++ b/data/w60_S3.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbc8c11ba23a07d0e2295375f7ed58538b8e9d855464b9ace863bebb78e4ce8 +size 355548 diff --git a/data/w60_S4.parquet b/data/w60_S4.parquet new file mode 100644 index 0000000000000000000000000000000000000000..dca63d39b050a3e4f7f381b1f39bcafaebd22b97 --- /dev/null +++ b/data/w60_S4.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16059747de2e0dd15e929d80bc2f1f656e94c330b74b0b459a321bea639c7028 +size 353309 diff --git a/data/w60_S5.parquet b/data/w60_S5.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a1bc216764ab0de9e18ff06fbb8e1856ffdc06a3 --- /dev/null +++ b/data/w60_S5.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854fc7f57f61890d381eb12e4fe71ed47e77b591d30a8914b9d4cc26a0f29640 +size 269179 diff --git a/data/w60_S6.parquet b/data/w60_S6.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e77ffb4e2f705f8e1a3f2c49aa7b0d2ace91c5c0 --- /dev/null +++ b/data/w60_S6.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b93efd209ad572fd6467f824f33db8c648f5cd51e5e513223cafabc492a2c76 +size 345190 diff --git a/data/w60_all.parquet b/data/w60_all.parquet new file mode 100644 index 0000000000000000000000000000000000000000..53ec3c1c5063e9d1ee790c4ba60a118fd8c9daa1 --- /dev/null +++ b/data/w60_all.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffcc49fc63e84663638499dff9c13bacc40eef42b821f2d250ca62839b7789a0 +size 1394399 diff --git a/folds/w60_loso_holdout_S1_test.parquet b/folds/w60_loso_holdout_S1_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a626bed216b2cc2466bd9f29602c786a04713314 --- /dev/null +++ b/folds/w60_loso_holdout_S1_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2499dc4fa8abd1f6f0691d523c4d6f8ec9e5356bc9350d85ad07d0aecaacfe2 +size 350830 diff --git a/folds/w60_loso_holdout_S1_train.parquet b/folds/w60_loso_holdout_S1_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..af9ada5bb0986fc4feaa795d919fed35b0cfbd10 --- /dev/null +++ b/folds/w60_loso_holdout_S1_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12567f437eb0b395356eadbfaa36bfe34f78a1b69041c55a405406c752683918 +size 1167456 diff --git a/folds/w60_loso_holdout_S2_test.parquet b/folds/w60_loso_holdout_S2_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5610a6594294119b4e21a40d293dac4b9dea26c4 --- /dev/null +++ b/folds/w60_loso_holdout_S2_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c062a86d77db6071d67e789f5d227e55ae7101c87a6cdb9e89bd0c37e75eac +size 407018 diff --git a/folds/w60_loso_holdout_S2_train.parquet b/folds/w60_loso_holdout_S2_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..06d5a6f4b1c0f6866a3080207c492e6aa616639f --- /dev/null +++ b/folds/w60_loso_holdout_S2_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a9ccd2c5d2d0feced174f9628366b0fe750f3393bf6ddc9aa9b28306be6718 +size 1137274 diff --git a/folds/w60_loso_holdout_S3_test.parquet b/folds/w60_loso_holdout_S3_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1c50d6d8fa2b1df909d2b7df6d8abd62837a38ff --- /dev/null +++ b/folds/w60_loso_holdout_S3_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbc8c11ba23a07d0e2295375f7ed58538b8e9d855464b9ace863bebb78e4ce8 +size 355548 diff --git a/folds/w60_loso_holdout_S3_train.parquet b/folds/w60_loso_holdout_S3_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..70d27467dec1bc9d2c23276a0f8d8c535cdb17d0 --- /dev/null +++ b/folds/w60_loso_holdout_S3_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76b3e202249fac52ee58dbe056ae3a6c24ab2b94a868a0858ea184c4fcdef11 +size 1203619 diff --git a/folds/w60_loso_holdout_S4_test.parquet b/folds/w60_loso_holdout_S4_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..dca63d39b050a3e4f7f381b1f39bcafaebd22b97 --- /dev/null +++ b/folds/w60_loso_holdout_S4_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16059747de2e0dd15e929d80bc2f1f656e94c330b74b0b459a321bea639c7028 +size 353309 diff --git a/folds/w60_loso_holdout_S4_train.parquet b/folds/w60_loso_holdout_S4_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c611901a2b2e1f3475664fd5cbcb5d118736d8e9 --- /dev/null +++ b/folds/w60_loso_holdout_S4_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb9be09e70b7efa1ffef8f9f81c1c6da1fb71d53ab712f00cde3a86e5b970b6 +size 1212195 diff --git a/folds/w60_loso_holdout_S5_test.parquet b/folds/w60_loso_holdout_S5_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a1bc216764ab0de9e18ff06fbb8e1856ffdc06a3 --- /dev/null +++ b/folds/w60_loso_holdout_S5_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854fc7f57f61890d381eb12e4fe71ed47e77b591d30a8914b9d4cc26a0f29640 +size 269179 diff --git a/folds/w60_loso_holdout_S5_train.parquet b/folds/w60_loso_holdout_S5_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..da6b2e8ed6f15d02a7e856f6a44f844e9ac657bb --- /dev/null +++ b/folds/w60_loso_holdout_S5_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ea5c89442546749bb0d9398f7d7f4e4fc5fc4b889eae9e8f944893fcae41d8 +size 1271629 diff --git a/folds/w60_loso_holdout_S6_test.parquet b/folds/w60_loso_holdout_S6_test.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e77ffb4e2f705f8e1a3f2c49aa7b0d2ace91c5c0 --- /dev/null +++ b/folds/w60_loso_holdout_S6_test.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b93efd209ad572fd6467f824f33db8c648f5cd51e5e513223cafabc492a2c76 +size 345190 diff --git a/folds/w60_loso_holdout_S6_train.parquet b/folds/w60_loso_holdout_S6_train.parquet new file mode 100644 index 0000000000000000000000000000000000000000..46bdae7b31d19e349c9200f6a12a272f4d6989d4 --- /dev/null +++ b/folds/w60_loso_holdout_S6_train.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5333b849313e019551cbd0409290ed84cd9265ab5a1182760e88a905c4103488 +size 1206588 diff --git a/splits/w60_test_S6.parquet b/splits/w60_test_S6.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e77ffb4e2f705f8e1a3f2c49aa7b0d2ace91c5c0 --- /dev/null +++ b/splits/w60_test_S6.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b93efd209ad572fd6467f824f33db8c648f5cd51e5e513223cafabc492a2c76 +size 345190 diff --git a/splits/w60_train_S1_S2_S3_S4_S5.parquet b/splits/w60_train_S1_S2_S3_S4_S5.parquet new file mode 100644 index 0000000000000000000000000000000000000000..46bdae7b31d19e349c9200f6a12a272f4d6989d4 --- /dev/null +++ b/splits/w60_train_S1_S2_S3_S4_S5.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5333b849313e019551cbd0409290ed84cd9265ab5a1182760e88a905c4103488 +size 1206588