Instructions to use stabilityai/sd-vae-ft-mse with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use stabilityai/sd-vae-ft-mse with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/sd-vae-ft-mse", 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
Remove text-to-image tag
#12
by patrickvonplaten - opened
README.md
CHANGED
|
@@ -3,7 +3,6 @@ license: mit
|
|
| 3 |
tags:
|
| 4 |
- stable-diffusion
|
| 5 |
- stable-diffusion-diffusers
|
| 6 |
-
- text-to-image
|
| 7 |
inference: false
|
| 8 |
---
|
| 9 |
# Improved Autoencoders
|
|
|
|
| 3 |
tags:
|
| 4 |
- stable-diffusion
|
| 5 |
- stable-diffusion-diffusers
|
|
|
|
| 6 |
inference: false
|
| 7 |
---
|
| 8 |
# Improved Autoencoders
|