What is being compressed
Sampling a diffusion or flow model means walking a path from pure noise to a finished latent, evaluating the network at every stop. Thirty stops is thirty forward passes, and on video that dominates both cost and latency.
Distillation trains a student network to skip stops. The strict formulation gives the student a self-consistency property: whatever point on the teacher's trajectory you hand it, it returns the same endpoint. If that property holds, then the very first point, pure noise, already maps to the finished image, and a single evaluation is enough.
Practice is messier than the theory. The families you actually encounter mix several tricks: consistency distillation against a teacher, adversarial losses to restore the sharpness that pure distillation smooths away, and distribution matching objectives that keep the student from collapsing onto a handful of outputs. The published lines that matter are the latent consistency model work and its LoRA form, the adversarial turbo and lightning variants of SDXL, the single-pass Flux sibling, and the causal distillations that let video models stream frame by frame.
How to tell you are using one
A hosted catalog rarely says distilled outright. The tells are consistent:
- Step count in the single digits, or no step control at all.
- A guidance parameter that is fixed, hidden, or has no visible effect when changed.
- A negative prompt field that quietly does nothing.
- Names in the fast, turbo, flash, lite, schnell, lightning family, usually priced at a fraction of the sibling model.
- Different seeds producing suspiciously similar images.
That last one is the most reliable signal, and also the clearest statement of what you gave up. Variety is the first casualty of step compression.
Where the trade lands in real work
The honest use case is exploration. When a generation takes two seconds instead of forty, the whole shape of the work changes: you audition twelve compositions instead of committing to one, you iterate on a prompt while looking at the result, and on a canvas you can fill a board with options before choosing. That is worth a real quality concession, because most of those images exist only to be rejected.
The trade goes bad when a distilled output ends up as the deliverable. Waxy skin, flattened fabric, and the particular smooth cleanliness of a four-step render are hard to fix downstream, and they are exactly what an audience reads as machine made. Upscaling does not restore texture that was never generated.
So the workflow that holds up is two-stage. Explore on the fast tier, then regenerate the chosen direction on the full model with the same prompt and a proper step count. On video the argument is even stronger, because a distilled draft lets you check whether the motion works before paying for the version you will actually cut into a sequence.
One more point worth internalising: distillation is orthogonal to architecture. A distilled model inherits its prompt understanding, its resolution range and its detail ceiling from the teacher it was compressed from. If the full model cannot spell or cannot hold a 10 second shot, the fast tier will not either. Step compression buys speed, and only speed.