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 ·
a74fae4
1
Parent(s): f45086c
Upload folder using huggingface_hub
Browse files- handler.py +1 -1
- requirements.txt +0 -0
handler.py
CHANGED
|
@@ -105,4 +105,4 @@ class EndpointHandler():
|
|
| 105 |
# This function will be called during inference time.
|
| 106 |
|
| 107 |
|
| 108 |
-
new_handler = EndpointHandler()
|
|
|
|
| 105 |
# This function will be called during inference time.
|
| 106 |
|
| 107 |
|
| 108 |
+
# new_handler = EndpointHandler()
|
requirements.txt
CHANGED
|
Binary files a/requirements.txt and b/requirements.txt differ
|
|
|