Text-to-Image
Diffusers
ONNX
OnnxStableDiffusionPipeline
unpaint
stable_diffusion_model
stable-diffusion
Instructions to use axodoxian/stable_diffusion_onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use axodoxian/stable_diffusion_onnx with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("axodoxian/stable_diffusion_onnx", 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
Merge branch 'main' of https://huggingface.co/axodoxian/stable_diffusion_onnx
Browse files
README.md
CHANGED
|
@@ -4,4 +4,10 @@ tags:
|
|
| 4 |
- unpaint
|
| 5 |
- stable_diffusion_model
|
| 6 |
- onnx
|
| 7 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- unpaint
|
| 5 |
- stable_diffusion_model
|
| 6 |
- onnx
|
| 7 |
+
- stable-diffusion
|
| 8 |
+
library_name: diffusers
|
| 9 |
+
model_description:
|
| 10 |
+
- repo: runwayml/stable-diffusion-v1-5
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
This is a Microsoft Olive optimized ONNX version of the model found here: https://huggingface.co/runwayml/stable-diffusion-v1-5
|