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
Update README.md
Browse files
README.md
CHANGED
|
@@ -193,10 +193,25 @@ up[0].show()
|
|
| 193 |
|
| 194 |
### Prompt refiner
|
| 195 |
```
|
| 196 |
-
refined = pipe.refine_prompts("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
print(refined[0])
|
| 198 |
```
|
| 199 |
-
|
|
|
|
|
|
|
|
|
|
| 200 |
|
| 201 |
### Encode image (experimental)
|
| 202 |
```
|
|
|
|
| 193 |
|
| 194 |
### Prompt refiner
|
| 195 |
```
|
| 196 |
+
refined = pipe.refine_prompts("1girl, solo, lazypos, cinematic lighting, volumetric lighting, dutch angle,
|
| 197 |
+
anime coloring, delicate, dreamy, natural shadow, serene atmosphere,
|
| 198 |
+
<lora:hololive_kaela_kovalskia_redebut:0.65> kaela20, blonde hair, red eyes, hair ribbon, red ribbon, long hair, half updo, tsurime,
|
| 199 |
+
BREAK
|
| 200 |
+
overalls, green overalls, white shirt, straw hat, hat flower, daisy, sleeves rolled up, three-quarter sleeves,
|
| 201 |
+
outdoors, flower field,
|
| 202 |
+
bouquet, holding bouquet, looking at viewer, smile,
|
| 203 |
+
m¨h0r_a97Q, refraction, prismatic light,
|
| 204 |
+
<lora:WSSKX_WAI:0.35>
|
| 205 |
+
<lora:ashima-il:0.35>
|
| 206 |
+
<lora:MYRHA-¨00:0.75>
|
| 207 |
+
<lora:Dramatic Lighting Slider:3.5>
|
| 208 |
+
<lora:spo_sdxl_10ep_4k-data_lora_webui:1.3>")
|
| 209 |
print(refined[0])
|
| 210 |
```
|
| 211 |
+
Refined prompt:
|
| 212 |
+
|
| 213 |
+
A blonde-haired Red Eyes girl with a hair ribbon, half-updo, and tsurime stands solo in a flower field holding a bouquet with a serene smile, wearing green overalls, a white shirt, rolled-up sleeves, and a straw hat with a flower while looking at the viewer under volumetric and natural lighting with a Dutch angle.
|
| 214 |
+

|
| 215 |
|
| 216 |
### Encode image (experimental)
|
| 217 |
```
|