Text-to-Image
Diffusers
PyTorch
Safetensors
English
stable-diffusion
optimized
sd-v1.5-base
sd-v1.5-inpainting
Instructions to use ehristoforu/stable-diffusion-v1-5-tiny with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ehristoforu/stable-diffusion-v1-5-tiny with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ehristoforu/stable-diffusion-v1-5-tiny", 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 Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,11 +5,12 @@ language:
|
|
| 5 |
library_name: diffusers
|
| 6 |
pipeline_tag: text-to-image
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
- safetensors
|
| 10 |
- stable-diffusion
|
| 11 |
- optimized
|
| 12 |
-
- sd-v1.5
|
|
|
|
| 13 |
base_model: runwayml/stable-diffusion-v1-5
|
| 14 |
inference: false
|
| 15 |
---
|
|
|
|
| 5 |
library_name: diffusers
|
| 6 |
pipeline_tag: text-to-image
|
| 7 |
tags:
|
| 8 |
+
- pytorch
|
| 9 |
- safetensors
|
| 10 |
- stable-diffusion
|
| 11 |
- optimized
|
| 12 |
+
- sd-v1.5-base
|
| 13 |
+
- sd-v1.5-inpainting
|
| 14 |
base_model: runwayml/stable-diffusion-v1-5
|
| 15 |
inference: false
|
| 16 |
---
|