File size: 1,005 Bytes
54c3b8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
library_name: diffusers
pipeline_tag: text-to-video
tags:
- diffusers
- wan
- tiny-random
- debug
---

# Tiny FastWan2.1 T2V DMD Debug Pipeline

This is a randomly initialized, tiny `WanDMDPipeline` fixture for `FastVideo/FastWan2.1-T2V-1.3B-Diffusers`.
FastVideo FastWan2.1 DMD-style text-to-video layout represented as a Diffusers-format artifact with `_class_name` patched to `WanDMDPipeline` for FastVideo `VideoGenerator` load-path debugging.

It is intended for fast load-path and inference-control debugging only. It is not trained and should
not be used for generation quality evaluation.

```python
import os
from fastvideo import VideoGenerator

os.environ["FASTVIDEO_ATTENTION_BACKEND"] = "TORCH_SDPA"
generator = VideoGenerator.from_pretrained(
    "Erland/tiny-fastwan2.1-t2v-dmd-debug",
    num_gpus=1,
)
try:
    generator.generate_video(
        "debug prompt",
        output_path="my_videos/",
        save_video=True,
    )
finally:
    generator.shutdown()
```