Text-to-Image
Diffusers
Safetensors
StableDiffusionXLPipeline
stable-diffusion
sdxl
flash
sdxl-flash
lightning
turbo
lcm
hyper
fast
fast-sdxl
sd-community
Instructions to use sd-community/sdxl-flash with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use sd-community/sdxl-flash with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("sd-community/sdxl-flash", 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
`DPMSolverSinglestepScheduler` used is DPM++ second order single step.
#5
by tolgacangoz - opened
README.md
CHANGED
|
@@ -40,7 +40,7 @@ Introducing the new fast model SDXL Flash, we learned that all fast XL models wo
|
|
| 40 |
### Optimal settings
|
| 41 |
- **Steps**: 6-9
|
| 42 |
- **CFG Scale**: 2.5-3.5
|
| 43 |
-
- **Sampler**: DPM++
|
| 44 |
|
| 45 |
### Diffusers usage
|
| 46 |
|
|
|
|
| 40 |
### Optimal settings
|
| 41 |
- **Steps**: 6-9
|
| 42 |
- **CFG Scale**: 2.5-3.5
|
| 43 |
+
- **Sampler**: DPM++ 2S
|
| 44 |
|
| 45 |
### Diffusers usage
|
| 46 |
|