|
--- |
|
license: apache-2.0 |
|
language: |
|
- en |
|
library_name: diffusers |
|
--- |
|
<p align="center"> |
|
<img src="https://huggingface.co/rhymes-ai/Allegro/resolve/main/banner_white.gif"> |
|
</p> |
|
<p align="center"> |
|
<a href="https://rhymes.ai/allegro_gallery" target="_blank"> Gallery</a> 路 <a href="https://github.com/rhymes-ai/Allegro" target="_blank">GitHub</a> 路 <a href="https://rhymes.ai/blog-details/allegro-advanced-video-generation-model" target="_blank">Blog</a> 路 <a href="https://discord.com/invite/u8HxU23myj" target="_blank">Discord</a> |
|
|
|
</p> |
|
|
|
# Gallery |
|
<img src="https://huggingface.co/rhymes-ai/Allegro/resolve/main/gallery.gif" width="1000" height="800"/>For more demos and corresponding prompts, see the [Allegro Gallery](https://rhymes.ai/allegro_gallery). |
|
|
|
|
|
# Key Feature |
|
|
|
- **Open Source**: Full [model weights](https://huggingface.co/rhymes-ai/Allegro) and [code](https://github.com/rhymes-ai/Allegro) available to the community, Apache 2.0! |
|
- **Versatile Content Creation**: Capable of generating a wide range of content, from close-ups of humans and animals to diverse dynamic scenes. |
|
- **High-Quality Output**: Generate detailed 6-second videos at 15 FPS with 720x1280 resolution, which can be interpolated to 30 FPS with [EMA-VFI](https://github.com/MCG-NJU/EMA-VFI). |
|
- **Small and Efficient**: Features a 175M parameter VideoVAE and a 2.8B parameter VideoDiT model. Supports multiple precisions (FP32, BF16, FP16) and uses 9.3 GB of GPU memory in BF16 mode with CPU offloading. Context length is 79.2K, equivalent to 88 frames. |
|
|
|
# Model info |
|
|
|
<table> |
|
<tr> |
|
<th>Model</th> |
|
<td>Allegro</td> |
|
</tr> |
|
<tr> |
|
<th>Description</th> |
|
<td>Text-to-Video Generation Model</td> |
|
</tr> |
|
<tr> |
|
<th>Download</th> |
|
<td><a href="https://huggingface.co/rhymes-ai/Allegro">Hugging Face</a></td> |
|
</tr> |
|
<tr> |
|
<th rowspan="2">Parameter</th> |
|
<td>VAE: 175M</td> |
|
</tr> |
|
<tr> |
|
<td>DiT: 2.8B</td> |
|
</tr> |
|
<tr> |
|
<th rowspan="2">Inference Precision</th> |
|
<td>VAE: FP32/TF32/BF16/FP16 (best in FP32/TF32)</td> |
|
</tr> |
|
<tr> |
|
<td>DiT/T5: BF16/FP32/TF32</td> |
|
</tr> |
|
<tr> |
|
<th>Context Length</th> |
|
<td>79.2K</td> |
|
</tr> |
|
<tr> |
|
<th>Resolution</th> |
|
<td>720 x 1280</td> |
|
</tr> |
|
<tr> |
|
<th>Frames</th> |
|
<td>88</td> |
|
</tr> |
|
<tr> |
|
<th>Video Length</th> |
|
<td>6 seconds @ 15 FPS</td> |
|
</tr> |
|
<tr> |
|
<th>Single GPU Memory Usage</th> |
|
<td>9.3G BF16 (with cpu_offload)</td> |
|
</tr> |
|
</table> |
|
|
|
|
|
# Quick start |
|
1. Download the [Allegro GitHub code](https://github.com/rhymes-ai/Allegro). |
|
2. Install the necessary requirements. |
|
a. Ensure Python >= 3.10, PyTorch >= 2.4, CUDA >= 12.4. For details, see [requirements.txt](https://github.com/rhymes-ai/Allegro/blob/main/requirements.txt). |
|
b. It is recommended to use Anaconda to create a new environment (Python >= 3.10) to run the following example. |
|
4. Download the [Allegro model weights](https://huggingface.co/rhymes-ai/Allegro). |
|
5. Run inference. |
|
|
|
```python |
|
python single_inference.py \ |
|
--user_prompt 'A seaside harbor with bright sunlight and sparkling seawater, with many boats in the water. From an aerial view, the boats vary in size and color, some moving and some stationary. Fishing boats in the water suggest that this location might be a popular spot for docking fishing boats.' \ |
|
--vae your/path/to/vae \ |
|
--dit your/path/to/transformer \ |
|
--text_encoder your/path/to/text_encoder \ |
|
--tokenizer your/path/to/tokenizer \ |
|
--guidance_scale 7.5 \ |
|
--num_sampling_steps 100 \ |
|
--seed 42 |
|
``` |
|
|
|
# License |
|
This repo is released under the Apache 2.0 License. |
|
|