File size: 1,281 Bytes
95fb34a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
task_categories:
- text-to-video
pretty_name: One-Forcing Data
size_categories:
- 1K<n<10K
---

# One-Forcing Data

Compact clean-latent LMDB shards for One-Forcing training.

The original ODE trajectory rows had shape `[num_denoising_steps, num_frames, channels, height, width]`.
This release keeps only the clean latent used by training, so each row is stored as
`[num_frames, channels, height, width]`.

## Layout

```text
ODE6KCausal_chunkwise_0/data.mdb
ODE6KCausal_chunkwise_0/lock.mdb
...
ODE6KCausal_chunkwise_14/data.mdb
ODE6KCausal_chunkwise_14/lock.mdb
```

Each shard uses the same LMDB key layout as the training code:

- `latents_shape`: stored shape for the shard, e.g. `434 21 16 60 104`
- `latents_source_shape`: original full trajectory shape, e.g. `434 6 21 16 60 104`
- `latents_clean_only`: `1`
- `latents_{i}_data`: float16 clean latent row
- `prompts_{i}_data`: UTF-8 prompt string
- `prompts_shape`: number of prompts in the shard

## Usage

Point One-Forcing training at the downloaded dataset directory:

```bash
torchrun --nproc_per_node=8 train.py \
  --config_path chunkwise_config.yaml \
  --data_path /path/to/One-Forcing-Data \
  --disable-wandb \
  --no_visualize
```

The expected `data_prefix` is `ODE6KCausal_chunkwise`.