Instructions to use SagiPolaczek/stable-diffusion-2-1-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use SagiPolaczek/stable-diffusion-2-1-base with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("SagiPolaczek/stable-diffusion-2-1-base", 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
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,6 +5,9 @@ tags:
|
|
| 5 |
- text-to-image
|
| 6 |
---
|
| 7 |
|
|
|
|
|
|
|
|
|
|
| 8 |
# Stable Diffusion v2-1-base Model Card
|
| 9 |
This model card focuses on the model associated with the Stable Diffusion v2-1-base model.
|
| 10 |
|
|
|
|
| 5 |
- text-to-image
|
| 6 |
---
|
| 7 |
|
| 8 |
+
# Stability removed the official model - so here's a mirror.
|
| 9 |
+
|
| 10 |
+
|
| 11 |
# Stable Diffusion v2-1-base Model Card
|
| 12 |
This model card focuses on the model associated with the Stable Diffusion v2-1-base model.
|
| 13 |
|