Instructions to use stabilityai/stable-diffusion-3.5-large-turbo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use stabilityai/stable-diffusion-3.5-large-turbo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large-turbo", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
upgrade strenght
A small idea about control in img2img / SD:
We often rely on a single global strength, but in practice it bundles together very different needs.
Changing the background, adding effects, modifying the outfit, or preserving the face are not the same kind of transformation at all.
I’m wondering whether the better direction would be a per-component strength model, something like:
identity_strengthanatomy_strengthoutfit_strengthbackground_strengtheffects_strengthprops_strength
Even if the final sampler only accepts one strength, these separate scores could still be used upstream to drive:
- the final prompt
- visual priorities
- masking
- the choice between light or strong img2img
- specialized passes
So the idea is basically to replace one global slider with a finer semantic control layer.
To me, that seems much closer to the actual kinds of transformations we ask these models to perform.
Curious whether anyone here has already experimented with something along these lines.