Instructions to use bluestarburst/AnimateDiff-SceneFusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use bluestarburst/AnimateDiff-SceneFusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("bluestarburst/AnimateDiff-SceneFusion", 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
Commit ·
b9e2fa0
1
Parent(s): dd1b6fe
Update requirements.txt
Browse files- requirements.txt +1 -1
requirements.txt
CHANGED
|
@@ -2,7 +2,7 @@ einops
|
|
| 2 |
omegaconf
|
| 3 |
decord
|
| 4 |
safetensors
|
| 5 |
-
diffusers[torch]==0.
|
| 6 |
transformers
|
| 7 |
xformers
|
| 8 |
triton==2.0.0
|
|
|
|
| 2 |
omegaconf
|
| 3 |
decord
|
| 4 |
safetensors
|
| 5 |
+
diffusers[torch]==0.20.0
|
| 6 |
transformers
|
| 7 |
xformers
|
| 8 |
triton==2.0.0
|