pixelhero98 commited on
Commit
73a7f56
·
verified ·
1 Parent(s): 42ef610

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: D2F Review Processed Dataset Bundle
4
+ tags:
5
+ - anonymous-review
6
+ - time-series
7
+ - processed-datasets
8
+ ---
9
+
10
+ # D2F Review Processed Dataset Bundle
11
+
12
+ This dataset repository hosts a reduced processed-data bundle for anonymous review. It is intended to support subset evaluation using redistributable processed inputs only.
13
+
14
+ ## Files
15
+
16
+ - `d2f_review_processed_datasets_public.zip`: reduced processed dataset bundle
17
+ - `d2f_review_processed_datasets_public.manifest.json`: file list, byte counts, and SHA256 checksums
18
+
19
+ ## Bundle Summary
20
+
21
+ - Size: 2,336,951,424 bytes (2.18 GiB)
22
+ - SHA256: `9b35e971668875f31312eaa4fa0058339a5a1c7ec16aa9a7207c5d2d0d4eb5f2`
23
+ - File count: 16
24
+ - Uncompressed member bytes: 3,664,989,844
25
+
26
+ ## Included Data
27
+
28
+ - `data/cryptos_binance_spot_monthly_1s_l10.npz`
29
+ - Processed Monash dataset manifests, audits, and `.tsf` source files under `paper_datasets/monash/`
30
+
31
+ ## Excluded Data
32
+
33
+ The public bundle excludes restricted or non-public-review files:
34
+
35
+ - `data/es_mbp_10.npz`
36
+ - `data/sleep_edf_3ch_100hz_stage_conditioned.npz`
37
+ - `data/sleep_edf_3ch_100hz_stage_conditioned.json`
38
+ - Monash raw download zip files under `paper_datasets/monash/*/raw/`
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from huggingface_hub import hf_hub_download
44
+
45
+ bundle = hf_hub_download(
46
+ repo_id="pixelhero98/d2f-dataset",
47
+ filename="d2f_review_processed_datasets_public.zip",
48
+ repo_type="dataset",
49
+ )
50
+ ```
51
+
52
+ Then pass the downloaded path to the evaluation runner:
53
+
54
+ ```bash
55
+ CUDA_VISIBLE_DEVICES='' PYTHONDONTWRITEBYTECODE=1 python -m diffusion_flow_inference.evaluation.diffusion_flow_time_reparameterization \
56
+ --dataset_bundle_zip "$bundle" \
57
+ --dataset_bundle_mode auto \
58
+ --dataset_bundle_extract_root outputs/dataset_bundles/extracted \
59
+ --backbone_manifest outputs/backbone_matrix/backbone_manifest.json
60
+ ```
61
+
62
+ Users are responsible for complying with the terms of the upstream datasets represented in this processed review artifact.