Views
No views yet
WanPipeline fixture. 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.1from diffusers import WanPipeline
2
3pipe = WanPipeline.from_pretrained("Erland/tiny-wan2.1-t2v-debug")
4pipe.set_progress_bar_config(disable=True)
5frames = pipe(
6 prompt="debug prompt",
7 height=64,
8 width=64,
9 num_frames=5,
10 num_inference_steps=1,
11 guidance_scale=1.0,
12 max_sequence_length=8,
13).frames[0]