stabilityai_sd-turbo
stabilityai · View on Hugging Face ↗
Model card
The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.
pipeline_tag: text-to-image inference: false
SD-Turbo Model Card
SD-Turbo is a fast generative text-to-image model that can synthesize photorealistic images from a text prompt in a single network evaluation. We release SD-Turbo as a research artifact, and to study small, distilled text-to-image models. For increased quality and prompt understanding, we recommend SDXL-Turbo.
Please note: For commercial use, please refer to https://stability.ai/license.
Model Details
Model Description
SD-Turbo is a distilled version of Stable Diffusion 2.1, trained for real-time synthesis. SD-Turbo is based on a novel training method called Adversarial Diffusion Distillation (ADD) (see the technical report), which allows sampling large-scale foundational image diffusion models in 1 to 4 steps at high image quality. This approach uses score distillation to leverage large-scale off-the-shelf image diffusion models as a teacher signal and combines this with an adversarial loss to ensure high image fidelity even in the low-step regime of one or two sampling steps.
- Developed by: Stability AI
- Funded by: Stability AI
- Model type: Generative text-to-image model
- Finetuned from model: Stable Diffusion 2.1
Model Sources
For research purposes, we recommend our generative-models Github repository (https://github.com/Stability-AI/generative-models),
which implements the most popular diffusion frameworks (both training and inference).
- Repository: https://github.com/Stability-AI/generative-models
- Paper: https://stability.ai/research/adversarial-diffusion-distillation
- Demo [for the bigger SDXL-Turbo]: http://clipdrop.co/stable-diffusion-turbo
Evaluation
The charts above evaluate user preference for SD-Turbo over other single- and multi-step models. SD-Turbo evaluated at a single step is preferred by human voters in terms of image quality and prompt following over LCM-Lora XL and LCM-Lora 1.5.
Note: For increased quality, we recommend the bigger version SDXL-Turbo. For details on the user study, we refer to the research paper.
Uses
Direct Use
The model is intended for both non-commercial and commercial usage. Possible research areas and tasks include
- Research on generative models.
- Research on real-time applications of generative models.
- Research on the impact of real-time generative models.
- Safe deployment of models which have the potential to generate harmful content.
- Probing and understanding the limitations and biases of generative models.
- Generation of artworks and use in design and other artistic processes.
- Applications in educational or creative tools.
For commercial use, please refer to https://stability.ai/membership.
Excluded uses are described below.
Diffusers
pip install diffusers transformers accelerate --upgrade
- Text-to-image:
SD-Turbo does not make use of guidance_scale or negative_prompt, we disable it with guidance_scale=0.0.
Preferably, the model generates images of size 512x512 but higher image sizes work as well.
A single step is enough to generate high quality images.
from diffusers import AutoPipelineForText2Image
import torch
pipe = AutoPipelineForText2Image.from_pretrained("stabilityai/sd-turbo", torch_dtype=torch.float16, variant="fp16")
pipe.to("cuda")
prompt = "A cinematic shot of a baby racoon wearing an intricate italian priest robe."
image = pipe(prompt=prompt, num_inference_steps=1, guidance_scale=0.0).images[0]
- Image-to-image:
When using SD-Turbo for image-to-image generation, make sure that num_inference_steps * strength is larger or equal
to 1. The image-to-image pipeline will run for int(num_inference_steps * strength) steps, e.g. 0.5 * 2.0 = 1 step in our example
below.
from diffusers import AutoPipelineForImage2Image
from diffusers.utils import load_image
import torch
pipe = AutoPipelineForImage2Image.from_pretrained("stabilityai/sd-turbo", torch_dtype=torch.float16, variant="fp16")
pipe.to("cuda")
init_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png").resize((512, 512))
prompt = "cat wizard, gandalf, lord of the rings, detailed, fantasy, cute, adorable, Pixar, Disney, 8k"
image = pipe(prompt, image=init_image, num_inference_steps=2, strength=0.5, guidance_scale=0.0).images[0]
Out-of-Scope Use
The model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model. The model should not be used in any way that violates Stability AI's Acceptable Use Policy.
Limitations and Bias
Limitations
- The quality and prompt alignment is lower than that of SDXL-Turbo.
- The generated images are of a fixed resolution (512x512 pix), and the model does not achieve perfect photorealism.
- The model cannot render legible text.
- Faces and people in general may not be generated properly.
- The autoencoding part of the model is lossy.
Recommendations
The model is intended for both non-commercial and commercial usage.
How to Get Started with the Model
Check out https://github.com/Stability-AI/generative-models
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:dbc4b2788ffa2136048d472ea137107f0eecac43&dn=stabilityai_sd-turboOpen magnet in torrent client · infohash dbc4b2788ffa2136048d472ea137107f0eecac43
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| LICENSE.md | 11.6 KB (11,852 B) | 1d9ce2ee1067327543544de197291726e4fc57a4 | d6f6b1a4dce5c852bd6d7d9482d002baf0ccdb71e662250b73be9eec8764ee8d |
| README.md | 5.8 KB (5,900 B) | a016be12ea42e3d836e86565c02d78efcfc2f47b | 2482ac53e71baf0624ede7aca74122ef60e442360535105cd57bcc9d7138c22e |
| image_quality_one_step.png | 191.5 KB (196,141 B) | 7c1f01436114b26f7a5c577186f0e3da51e8abc7 | 6ff83eb0d3046e83dfc3edb0557d17d4c4888fb3da6498deb87046146b0e00eb |
| model_index.json | 616 B (616 B) | f74ca1646745f23bd748f47468afd60f73951da9 | 679fe7c2a03a419a046f4330bb2e32570d96e7a6da51b7df147d4a87bc7f775c |
| output_tile.jpg | 723.8 KB (741,155 B) | 3a0713b763100a3f16f4fb180774aed5ba1e86a4 | 77233455ae0498efabb97043454070aa7a57706e8165fc6e978bdf478586b56e |
| prompt_alignment_one_step.png | 192.0 KB (196,578 B) | 10f3f959edd89da113c24e61587ef35d9a84c5a1 | ba539b12569a6214141595bd8175e7aabbc5082d6de85bef9aa80ed1a8c0bc4f |
| scheduler/scheduler_config.json | 553 B (553 B) | d1cbb1cb9d43687fd217cdbb65a03065b2855375 | 5599066c725fc2747a201fa3165ad7c8c3de3be629ce325451752e8f94c0d1ae |
| sd_turbo.safetensors | 4.86 GB (5,214,561,328 B) | b9f6ca949367c09aefbfff0a7456812dfcbaf4e7 | 3f067a1b943cf162f2b8f8588f6cf5824bd5b4c7d1d88d87164b9ca123616549 |
| text_encoder/config.json | 618 B (618 B) | 97ea68ede5facd8fc42ac4947694c9000016b83f | 9f6935d3d41bf8ce49b1d7ed912b29e770649d1aa3f3972215284f9397cd97d2 |
| text_encoder/model.fp16.safetensors | 649.3 MB (680,820,392 B) | 9c1b8ef4b5a85b08bac09c3232a03c0884a07842 | bc1827c465450322616f06dea41596eac7d493f4e95904dcb51f0fc745c4e13f |
| text_encoder/model.safetensors | 1.27 GB (1,361,596,304 B) | 110a72cd005986778888a792ca951553f4d33506 | 67e013543d4fac905c882e2993d86a2d454ee69dc9e8f37c0c23d33a48959d15 |
| tokenizer/merges.txt | 512.3 KB (524,619 B) | 76e821f1b6f0a9709293c3b6b51ed90980b3166b | 9fd691f7c8039210e0fced15865466c65820d09b63988b0174bfe25de299051a |
| tokenizer/special_tokens_map.json | 574 B (574 B) | eaf8780e3c90b1af01a8574bf8596a9acebe6858 | c2d0fb8b86ad86b1f46134d4a5f93fd1e688c932a78efc8d149087c33a53ad06 |
| tokenizer/tokenizer_config.json | 855 B (855 B) | bd2abe19377557ff5771584921f9b65fa041fef0 | 516314ccab66918d7cb647480ac27abd3520d14e1e5825aac99f50c851c16071 |
| tokenizer/vocab.json | 1.0 MB (1,059,962 B) | 469be27c5c010538f845f518c4f5e8574c78f7c8 | e089ad92ba36837a0d31433e555c8f45fe601ab5c221d4f607ded32d9f7a4349 |
| unet/config.json | 1.8 KB (1,867 B) | de5b42a487ee4dddb17df5092e4c4a7b3da24a4e | ca09d494527ebe13343006e22b4468d45bf12aa34e76cf03639b6dbba1fb5c6d |
| unet/diffusion_pytorch_model.fp16.safetensors | 1.61 GB (1,731,904,736 B) | 998f1616e0489fd1b7a696552689a22b4a4335b2 | 40ec400881e27d1376c7c95c5bd495f407b33756e80eb6365e301c33a07af6e5 |
| unet/diffusion_pytorch_model.safetensors | 3.23 GB (3,463,726,504 B) | c95fd3e392a423b9bdc525e6b782ed85f1303b0a | 438da6db739c8651ec4152341b8133d6896db452ea27afdb6b9b0344f0c40532 |
| vae/config.json | 655 B (655 B) | c4ee4e6c26ec43107d0684bf5ad1d6d60424f791 | 699a58ef7ecf3bffa201a507a3eaa3eed7efabab457ac547bf82df798b52a9be |
| vae/diffusion_pytorch_model.fp16.safetensors | 159.6 MB (167,335,342 B) | 0dfd32ea6517359daf673e0dcd581550714e0c50 | 3e4c08995484ee61270175e9e7a072b66a6e4eeb5f0c266667fe1f45b90daf9a |
| vae/diffusion_pytorch_model.safetensors | 319.1 MB (334,643,268 B) | 5910a2dc2389b610722746205a1b79db34045cfe | 2aa1f43011b553a4cba7f37456465cdbd48aab7b54b9348b890e8058ea7683ec |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/stabilityai_sd-turbo/
- Slug
- stabilityai_sd-turbo
- Infohash
- dbc4b2788ffa2136048d472ea137107f0eecac43
- License
- no license recorded
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: stabilityai_sd-turbo.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | stabilityai/sd-turbo |
|---|---|
| Revision (pinned) | b261bac6fd2cf515557d5d0707481eafa0485ec2 |
| Fetched at | 2026-09-04T05:41:44Z |
| License at fetch | no license recorded |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-04T05:43:49Z
no license recorded12.07 GB (12,957,329,819 bytes)diffuserssafetensorstext-to-imagediffusers:StableDiffusionPipeline