Instructions to use LucasDash/dash-sd-mix with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use LucasDash/dash-sd-mix with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("LucasDash/dash-sd-mix", 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
Update README.md
Browse files![00353-2041577811-polaroid photo by Wong Kar-Wai, cute punk [girl_woman], smiling, solo, messy [bob_disheveled] hair, blue eyes, red lipstick, out.png](https://s3.amazonaws.com/moonup/production/uploads/638bf06ed274cbbad28448b0/jyiD8UbT7fUqHbzvq4Ylp.png)
README.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: diffusers
|
| 6 |
+
tags:
|
| 7 |
+
- stable-diffusion
|
| 8 |
---
|
| 9 |
+
|
| 10 |
+
# Dash Stable Diffusion Mix
|
| 11 |
+
|
| 12 |
+
This is custom merge model of Stable Diffusion 1.5 with focus on realism.
|
| 13 |
+
|
| 14 |
+
----
|
| 15 |
+
|
| 16 |
+
# Sample
|
| 17 |
+
|
| 18 |
+

|
| 19 |
+
|
| 20 |
+
**Prompt:**
|
| 21 |
+
```
|
| 22 |
+
polaroid photo by Wong Kar-Wai, cute punk [girl|woman], smiling, solo, messy [bob|disheveled] hair, blue eyes, red lipstick, outrun red jacket, eye bags, wind blowing hair, realistic, cinematic atmosphere, dramatic lighting, hard back light, rembrandt lighting, deep of field, bokeh, bloom, RAW color, high quality, best quality, masterpiece
|
| 23 |
+
Negative prompt: (worst quality, low quality:1.4), ugly, frame border, painting, asian, clown, empty background, choker, watermark, (short hair:0.1), nude, easynegative
|
| 24 |
+
```
|
| 25 |
+
**Input details:** Steps: 30, Sampler: DPM++ SDE Karras, CFG scale: 7.5, Seed: 2041577811, Size: 768x768, Model hash: 447be1b31a, Model: dash_sd_mix
|
| 26 |
+
|