Instructions to use FastVideo/FastWan2.1-T2V-1.3B-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use FastVideo/FastWan2.1-T2V-1.3B-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/FastWan2.1-T2V-1.3B-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
Improve model card: Add pipeline tag, library name, and project page link
#1
by nielsr HF Staff - opened
This PR enhances the model card by:
- Adding
pipeline_tag: text-to-videoto improve discoverability on the Hub. - Adding
library_name: diffusersto enable the "Use in Diffusers" widget. - Including a link to the project's official documentation/homepage for comprehensive information.
BrianChen1129 changed pull request status to merged