File size: 1,935 Bytes
73a7f56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
license: other
pretty_name: D2F Review Processed Dataset Bundle
tags:
- anonymous-review
- time-series
- processed-datasets
---

# D2F Review Processed Dataset Bundle

This dataset repository hosts a reduced processed-data bundle for anonymous review. It is intended to support subset evaluation using redistributable processed inputs only.

## Files

- `d2f_review_processed_datasets_public.zip`: reduced processed dataset bundle
- `d2f_review_processed_datasets_public.manifest.json`: file list, byte counts, and SHA256 checksums

## Bundle Summary

- Size: 2,336,951,424 bytes (2.18 GiB)
- SHA256: `9b35e971668875f31312eaa4fa0058339a5a1c7ec16aa9a7207c5d2d0d4eb5f2`
- File count: 16
- Uncompressed member bytes: 3,664,989,844

## Included Data

- `data/cryptos_binance_spot_monthly_1s_l10.npz`
- Processed Monash dataset manifests, audits, and `.tsf` source files under `paper_datasets/monash/`

## Excluded Data

The public bundle excludes restricted or non-public-review files:

- `data/es_mbp_10.npz`
- `data/sleep_edf_3ch_100hz_stage_conditioned.npz`
- `data/sleep_edf_3ch_100hz_stage_conditioned.json`
- Monash raw download zip files under `paper_datasets/monash/*/raw/`

## Usage

```python
from huggingface_hub import hf_hub_download

bundle = hf_hub_download(
    repo_id="pixelhero98/d2f-dataset",
    filename="d2f_review_processed_datasets_public.zip",
    repo_type="dataset",
)
```

Then pass the downloaded path to the evaluation runner:

```bash
CUDA_VISIBLE_DEVICES='' PYTHONDONTWRITEBYTECODE=1 python -m diffusion_flow_inference.evaluation.diffusion_flow_time_reparameterization \
  --dataset_bundle_zip "$bundle" \
  --dataset_bundle_mode auto \
  --dataset_bundle_extract_root outputs/dataset_bundles/extracted \
  --backbone_manifest outputs/backbone_matrix/backbone_manifest.json
```

Users are responsible for complying with the terms of the upstream datasets represented in this processed review artifact.