Instructions to use AiArtLab/sdxs-1b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AiArtLab/sdxs-1b with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AiArtLab/sdxs-1b", dtype=torch.bfloat16, device_map="cuda") prompt = "sdxs-1b" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
readme
Browse files- README.md +6 -0
- media/up0.png +3 -0
- media/up1.png +3 -0
- media/up2.png +3 -0
README.md
CHANGED
|
@@ -92,6 +92,12 @@ Development Note: We have not provided direct comparisons with other popular ups
|
|
| 92 |
| <img src="media/123456789.jpg" height="512"/> | <img src="media/123456789.png" height="512"/> |
|
| 93 |
| original | 2x upscale |
|
| 94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
### Prompt refine
|
| 96 |
```
|
| 97 |
refined = pipe.refine_prompts("girl")
|
|
|
|
| 92 |
| <img src="media/123456789.jpg" height="512"/> | <img src="media/123456789.png" height="512"/> |
|
| 93 |
| original | 2x upscale |
|
| 94 |
|
| 95 |
+
true-to-source upscaling
|
| 96 |
+
| | | |
|
| 97 |
+
|:---:|:---:|:---:|
|
| 98 |
+
| <img src="media/up0.png" height="512"/> | <img src="media/up1.png" height="512"/> | <img src="media/up2.png" height="512"/> |
|
| 99 |
+
| original | sdxs vae | seedvr2 |
|
| 100 |
+
|
| 101 |
### Prompt refine
|
| 102 |
```
|
| 103 |
refined = pipe.refine_prompts("girl")
|
media/up0.png
ADDED
|
Git LFS Details
|
media/up1.png
ADDED
|
Git LFS Details
|
media/up2.png
ADDED
|
Git LFS Details
|