Instructions to use stabilityai/stable-diffusion-xl-base-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use stabilityai/stable-diffusion-xl-base-1.0 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/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Add ' ' tag
#227
by Someshfengde - opened
README.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
| 1 |
---
|
| 2 |
license: openrail++
|
| 3 |
tags:
|
|
|
|
|
|
|
|
|
|
| 4 |
- text-to-image
|
| 5 |
- stable-diffusion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
# SD-XL 1.0-base Model Card
|
| 8 |

|
|
|
|
| 1 |
---
|
| 2 |
license: openrail++
|
| 3 |
tags:
|
| 4 |
+
- diffusers
|
| 5 |
+
- onnx
|
| 6 |
+
- safetensors
|
| 7 |
- text-to-image
|
| 8 |
- stable-diffusion
|
| 9 |
+
- arxiv:2307.01952
|
| 10 |
+
- arxiv:2211.01324
|
| 11 |
+
- arxiv:2108.01073
|
| 12 |
+
- arxiv:2112.10752
|
| 13 |
+
- license:openrail++
|
| 14 |
+
- autotrain_compatible
|
| 15 |
+
- endpoints_compatible
|
| 16 |
+
- diffusers:StableDiffusionXLPipeline
|
| 17 |
+
- region:us
|
| 18 |
+
- ' '
|
| 19 |
---
|
| 20 |
# SD-XL 1.0-base Model Card
|
| 21 |

|