We present
Open-Sora, an initiative dedicated to
efficiently produce high-quality video and make the model,
tools and contents accessible to all. By embracing
open-source principles,
Open-Sora not only democratizes access to advanced video generation techniques, but also offers a
streamlined and user-friendly platform that simplifies the complexities of video production.
With Open-Sora, we aim to inspire innovation, creativity, and inclusivity in the realm of content creation.
More details can be founded at
Open-Sora GitHub.
You can launch this video generation with this model in a Gradio application.
1# git clone Open-Sora
2git clone https://github.com/hpcaitech/Open-Sora.git
3cd Open-Sora
4
5# launch gradio
6python scripts/demo.py --model-type v1-HQ-16x256x256
1from transformers import AutoModel
2
3stdit = AutoModel.from_pretrained("hpcai-tech/OpenSora-STDiT-v1-HQ-16x256x256")
Do note that this model alone cannot generate video, it should work alongside a vae model and a text encoder model like how we did in the demo.