Instructions to use LanguageBind/Open-Sora-Plan-v1.2.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use LanguageBind/Open-Sora-Plan-v1.2.0 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("LanguageBind/Open-Sora-Plan-v1.2.0", 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
Usage with diffusers
#2
by Alixmix - opened
I am really confused, i'm trying to use the model with diffuser pipeline as in the example:
from diffusers import DiffusionPipeline
pipeline = DiffusionPipeline.from_pretrained("LanguageBind/Open-Sora-Plan-v1.2.0")
But i get this error:
Entry Not Found for url: https://huggingface.co/LanguageBind/Open-Sora-Plan-v1.2.0/resolve/main/model_index.json.
how should this be used?