Views
No views yet
1---
2license: apache-2.0
3pipeline_tag: text-to-video
4tags:
5- video-generation
6- sora
7- text-to-video
8- open-weights
9- unlimited
10model_name: sora-2-free
11---
12
13# Sora-2-Free
14
15Sora-2-Free is a high-performance, open-weights text-to-video generation model. This model is designed to provide high-fidelity video synthesis from natural language prompts without the restrictions typically found in proprietary video generation APIs. It is 100% unlimited and 100% free to use under the Apache 2.0 license.
16
17## Model Details
18
19- **Model Type:** Text-to-Video Diffusion Model
20- **Developer:** Gertie2013
21- **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
22- **Status:** Full Release
23- **Capabilities:** Generates high-resolution video clips based on descriptive text prompts.
24
25## Key Features
26
27- **Unlimited Access:** No API quotas or gated access.
28- **High Fidelity:** Optimized for temporal consistency and visual detail.
29- **Free Use:** Openly available for both commercial and research purposes.
30
31## Usage
32
33You can use this model with standard video generation pipelines. (Note: Ensure you have the necessary dependencies installed for large-scale diffusion models, such as `torch` and `diffusers`).
34
35### Example Python Snippet
36
37```python
38import torch
39from diffusers import DiffusionPipeline
40
41# Load the model
42pipe = DiffusionPipeline.from_pretrained("Gertie2013/sora-2-free", torch_dtype=torch.float16)
43pipe.to("cuda")
44
45prompt = "A futuristic city with flying vehicles at sunset, cinematic lighting, 4k"
46video_frames = pipe(prompt, num_frames=24).frames
47
48# Save or display the video
49# (Standard video saving logic goes here)1@misc{sora-2-free-2024,
2 author = {Gertie2013},
3 title = {Sora-2-Free: Unlimited Open-Weights Text-to-Video Model},
4 year = {2024},
5 publisher = {Hugging Face},
6 journal = {Hugging Face Model Hub},
7 howpublished = {\url{https://huggingface.co/Gertie2013/sora-2-free}}
8}