NVIDIA and Weizmann's PDD distills diffusion to 4-8 NFE
TL;DR
- PDD replaces variational score distillation and adversarial losses with a single regression loss that predicts multiple denoising steps per network evaluation.
- On the 22B LTX-2.3 model, PDD reportedly produces 10-second 720p video with audio at 8 NFE after only 250 training iterations.
- Tested across Qwen-Image, Wan2.1 (1.3B and 14B) and ImageNet SiT-XL+REPA, the authors claim state-of-the-art results at 4-8 NFE.
A joint paper from NVIDIA and the Weizmann Institute of Science is worth a read if you care about the cost curve of generative video. The proposal, Parallel Decoding Distillation or PDD, is that a single regression loss can compress a diffusion or flow-matching model down to 4 to 8 network evaluations per sample, without the variational score distillation or adversarial losses that most current distillation pipelines lean on. The paper is on Hugging Face's papers index, with Neta Shaul from Weizmann and Chao Liu, Arash Vahdat and Julius Berner from NVIDIA on the byline.
The mechanical claim is that PDD predicts multiple denoising steps per network evaluation and learns mean velocity representations without JVPs or finite-difference approximations. That is a lot of engineering machinery to strip out at once, and if it holds, it lowers the barrier to publishing distillation work considerably.
The scale demos are where this gets interesting for anyone shipping product. The authors report state-of-the-art performance at 4 NFE on Qwen-Image for text-to-image (OneIG-EN 0.538, DPG-Bench 88.66, GenEval 0.86), on Wan2.1 in both the 1.3B and 14B variants for text-to-video, and on the 22B LTX-2.3 model for joint text-to-video-and-audio, where they claim 10-second 720p output at 8 NFE after only 250 training iterations. They also describe a data-free training path that alternates solver and training steps, which is the part that would matter to teams distilling proprietary teachers without access to the original training corpus.
The honest caveat is what the paper does not settle. NFE and benchmark scores are not the same as end-user perceptual quality, the improved-diversity claim is stated against automated metrics rather than human eval, and wall-clock inference speed on typical GPUs is a separate story from NFE counts. The eye-catching 250-iteration LTX result will only be as reproducible as the code and weights the group chooses to release.
If the results survive independent replication, the groups that benefit most are the second tier of video and image tools that cannot afford full-teacher sampling in production, and research labs that no longer need to maintain the VSD-plus-GAN pipeline just to publish in this area.
Originally reported by huggingface.co
Read the original article →Original headline: NVIDIA and Weizmann Ship Parallel Decoding Distillation, Predicts Multiple Denoising Steps in One Pass