Instructions to use amused/amused-512 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use amused/amused-512 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("amused/amused-512", 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 ·
6f3f309
1
Parent(s): 1ade4d5
Update README.md
Browse files
README.md
CHANGED
|
@@ -216,10 +216,7 @@ Amused inherits performance benefits from original [muse](https://arxiv.org/pdf/
|
|
| 216 |
|
| 217 |
Additionally, amused uses the smaller CLIP as its text encoder instead of T5 compared to muse. Amused is also smaller with ~600M params compared the largest 3B param muse model. Note that being smaller, amused produces comparably lower quality results.
|
| 218 |
|
| 219 |
-

|
| 221 |
-

|
| 222 |
-

|
| 223 |
|
| 224 |
### Muse performance knobs
|
| 225 |
|
|
|
|
| 216 |
|
| 217 |
Additionally, amused uses the smaller CLIP as its text encoder instead of T5 compared to muse. Amused is also smaller with ~600M params compared the largest 3B param muse model. Note that being smaller, amused produces comparably lower quality results.
|
| 218 |
|
| 219 |
+

|
|
|
|
|
|
|
|
|
|
| 220 |
|
| 221 |
### Muse performance knobs
|
| 222 |
|