Instructions to use APRIL-AIGC/T3-Video with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use APRIL-AIGC/T3-Video with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("APRIL-AIGC/T3-Video", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ datasets:
|
|
| 4 |
- APRIL-AIGC/UltraVideo
|
| 5 |
base_model:
|
| 6 |
- Wan-AI/Wan2.1-T2V-1.3B
|
| 7 |
-
pipeline_tag:
|
| 8 |
tags:
|
| 9 |
- video
|
| 10 |
- t2v
|
|
|
|
| 4 |
- APRIL-AIGC/UltraVideo
|
| 5 |
base_model:
|
| 6 |
- Wan-AI/Wan2.1-T2V-1.3B
|
| 7 |
+
pipeline_tag: text-to-video
|
| 8 |
tags:
|
| 9 |
- video
|
| 10 |
- t2v
|