Instructions to use animEEEmpire/AniMemory-alpha with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use animEEEmpire/AniMemory-alpha with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("animEEEmpire/AniMemory-alpha", 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
devancao commited on
Commit ·
fad02d2
1
Parent(s): ac011b6
readme modi
Browse files
README.md
CHANGED
|
@@ -121,7 +121,6 @@ images = pipe(prompt=prompt,
|
|
| 121 |
num_inference_steps=40,
|
| 122 |
height=1024, width=1024,
|
| 123 |
guidance_scale=7,
|
| 124 |
-
num_images_per_prompt=1
|
| 125 |
)[0]
|
| 126 |
images.save("output.png")
|
| 127 |
```
|
|
|
|
| 121 |
num_inference_steps=40,
|
| 122 |
height=1024, width=1024,
|
| 123 |
guidance_scale=7,
|
|
|
|
| 124 |
)[0]
|
| 125 |
images.save("output.png")
|
| 126 |
```
|