File size: 1,955 Bytes
5aa7e71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
64
65
---
license: unknown
task_categories:
  - text-to-video
tags:
  - video-generation
  - distillation
  - dmd2
  - repa
---

# repa_vs_dmd2

Qualitative comparison of two 4-step distilled video generators: a **DMD2** baseline
and the same setup with a **REPA loss** added on top of the DMD2 objective.

Both models were sampled on the prompts of **MovieGen Video Bench (extended)**, with
four seeds per prompt, so the two archives are seed- and prompt-aligned: the same
file name in each archive corresponds to the same prompt and the same seed.

## Contents

| File | Method | Videos |
| --- | --- | --- |
| `video_Repa_dmd2.tar.gz` | DMD2 loss (baseline) | 280 |
| `video_Repa_1k4.tar.gz` | DMD2 + REPA loss | 280 |

Each archive extracts to:

```
video_Repa_{dmd2,1k4}/
  MovieGenVideoBench_extended/
    student_step4_{prompt_index}_seed_student_{seed}.mp4
```

- `prompt_index` — 0-based index of the prompt in the MovieGen Video Bench (extended)
  prompt list (line `prompt_index + 1` of the prompt file).
- `seed` — 1 through 4.
- `student_step4` — the 4-step student sampler.

The prompt list itself is **not** included in this dataset; index into your own copy of
`MovieGenVideoBench_extended.txt` to recover the text for a given `prompt_index`.

## Usage

```bash
huggingface-cli download csusupergear/repa_vs_dmd2 --repo-type dataset --local-dir .
tar -xzf video_Repa_dmd2.tar.gz
tar -xzf video_Repa_1k4.tar.gz
```

To compare a single prompt across both methods:

```bash
# prompt 17, all four seeds, both methods
ls video_Repa_dmd2/MovieGenVideoBench_extended/student_step4_17_seed_student_*.mp4
ls video_Repa_1k4/MovieGenVideoBench_extended/student_step4_17_seed_student_*.mp4
```

## Notes

The archives are gzipped tarballs of already-compressed MP4 files, so gzip provides
essentially no size reduction — they exist to bundle 280 files into one download, not
to save space. The video bitstreams are byte-identical to the originals.