Instructions to use FastVideo/Wan2.1-VSA-T2V-14B-720P-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use FastVideo/Wan2.1-VSA-T2V-14B-720P-Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("FastVideo/Wan2.1-VSA-T2V-14B-720P-Diffusers", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -48,9 +48,9 @@ fastvideo generate \
|
|
| 48 |
--vae-cpu-offload False \
|
| 49 |
--text-encoder-cpu-offload True \
|
| 50 |
--pin-cpu-memory False \
|
| 51 |
-
--height
|
| 52 |
-
--width
|
| 53 |
-
--num-frames
|
| 54 |
--num-inference-steps 50 \
|
| 55 |
--fps 16 \
|
| 56 |
--guidance-scale 5.0 \
|
|
|
|
| 48 |
--vae-cpu-offload False \
|
| 49 |
--text-encoder-cpu-offload True \
|
| 50 |
--pin-cpu-memory False \
|
| 51 |
+
--height 720 \
|
| 52 |
+
--width 1280 \
|
| 53 |
+
--num-frames 81 \
|
| 54 |
--num-inference-steps 50 \
|
| 55 |
--fps 16 \
|
| 56 |
--guidance-scale 5.0 \
|