Update README.md
Browse files
README.md
CHANGED
@@ -51,6 +51,12 @@ num_gpus=1
|
|
51 |
export FASTVIDEO_ATTENTION_BACKEND=VIDEO_SPARSE_ATTN
|
52 |
export MODEL_BASE=FastVideo/FastWan2.1-T2V-14B-480P-Diffusers
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
# export MODEL_BASE=hunyuanvideo-community/HunyuanVideo
|
55 |
# You can either use --prompt or --prompt-txt, but not both.
|
56 |
fastvideo generate \
|
@@ -58,17 +64,18 @@ fastvideo generate \
|
|
58 |
--sp-size $num_gpus \
|
59 |
--tp-size 1 \
|
60 |
--num-gpus $num_gpus \
|
61 |
-
--height
|
62 |
-
--width
|
63 |
-
--num-frames
|
64 |
--num-inference-steps 3 \
|
65 |
--fps 16 \
|
66 |
--prompt-txt assets/prompt.txt \
|
67 |
--negative-prompt "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards" \
|
68 |
--seed 1024 \
|
69 |
-
--output-path
|
70 |
--VSA-sparsity 0.9 \
|
71 |
-
--dmd-denoising-steps "1000,757,522"
|
|
|
72 |
```
|
73 |
- Try it out on **FastVideo** — we support a wide range of GPUs from **H100** to **4090**, and also support **Mac** users!
|
74 |
|
|
|
51 |
export FASTVIDEO_ATTENTION_BACKEND=VIDEO_SPARSE_ATTN
|
52 |
export MODEL_BASE=FastVideo/FastWan2.1-T2V-14B-480P-Diffusers
|
53 |
|
54 |
+
# 720P 14B
|
55 |
+
# Torch compile is enabled. Expect generating the first video to be slow.
|
56 |
+
# Speed on H200 after warmup 3/3 [00:13<00:00, 4.45s/it]:
|
57 |
+
num_gpus=1
|
58 |
+
export FASTVIDEO_ATTENTION_BACKEND=VIDEO_SPARSE_ATTN
|
59 |
+
export MODEL_BASE=FastVideo/FastWan2.1-T2V-14B-480P-Diffusers
|
60 |
# export MODEL_BASE=hunyuanvideo-community/HunyuanVideo
|
61 |
# You can either use --prompt or --prompt-txt, but not both.
|
62 |
fastvideo generate \
|
|
|
64 |
--sp-size $num_gpus \
|
65 |
--tp-size 1 \
|
66 |
--num-gpus $num_gpus \
|
67 |
+
--height 720 \
|
68 |
+
--width 1280 \
|
69 |
+
--num-frames 81 \
|
70 |
--num-inference-steps 3 \
|
71 |
--fps 16 \
|
72 |
--prompt-txt assets/prompt.txt \
|
73 |
--negative-prompt "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards" \
|
74 |
--seed 1024 \
|
75 |
+
--output-path outputs_video_dmd_14B_720P/ \
|
76 |
--VSA-sparsity 0.9 \
|
77 |
+
--dmd-denoising-steps "1000,757,522" \
|
78 |
+
--enable_torch_compile
|
79 |
```
|
80 |
- Try it out on **FastVideo** — we support a wide range of GPUs from **H100** to **4090**, and also support **Mac** users!
|
81 |
|