Instructions to use vdo/pyramid-flow-sd3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use vdo/pyramid-flow-sd3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("vdo/pyramid-flow-sd3", 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
Add pipeline tag and library name, and update content
#1
by nielsr HF Staff - opened
This PR ensures people can find your model at https://huggingface.co/models?pipeline_tag=text-to-video. It also makes
sure the "how to use" button appears, indicating the model is compatible with the Diffusers library. The content of the model card is updated to reflect the current state of the model, incorporating information from the GitHub README.