@FeitengLi: NVIDIA Spatial Intelligence Lab 提出 PiD,重新设计了 latent 扩散模型里的解码环节。 目前主流文生图都在 latent 空间生成,再用 VAE decoder 映射回像素。这个 decoder 的…
摘要
NVIDIA Spatial Intelligence Lab 提出 PiD,将 latent 扩散模型的解码环节重新设计为条件像素扩散过程,统一解码与上采样,实现低延迟高分辨率解码。
查看缓存全文
缓存时间: 2026/05/25 04:43
NVIDIA Spatial Intelligence Lab 提出 PiD,重新设计了 latent 扩散模型里的解码环节。
目前主流文生图都在 latent 空间生成,再用 VAE decoder 映射回像素。这个 decoder 的目标是逆转 encoder、重建图像,本身不负责合成新细节,且在百万像素级别开销明显上升。
PiD 把「latent→像素」的解码重新表述为一个条件像素扩散过程,将解码与上采样统一成单个模块。
512×512 latent 解码到 2048×2048,在 RTX 5090 上耗时低于 1 秒(峰值显存 13GB),在 GB200 上约 210ms;相比级联超分基线 SeedVR2 约快 5.9 倍(211ms vs 1237ms)。
通过噪声 latent 训练和 sigma-aware gating,对未完全去噪的 latent 保持鲁棒,因此 base LDM 可以提前退出,剩下交由 PiD 在高分辨率完成。方法同时支持 VAE latent 与语义 latent(DINOv2 / SigLIP / RAE)。
实际效果与适用边界还需要更多场景去验证,不过把 decoder 当成一个能合成细节的扩散模块来重做,是个值得关注的方向。
https://research.nvidia.com/labs/sil/projects/pid/…
Fast and High-Resolution Latent Decoding with Pixel Diffusion
Source: https://research.nvidia.com/labs/sil/projects/pid/


VAE Decoder
PiD


RAE Decoder
PiD


VAE Decoder
PiD


VAE Decoder
PiD
Abstract
Most practical high-resolution text-to-image systems rely on latent diffusion models, where generation is performed in a compact latent space and a decoder maps latents back to pixels. Yet the latent-to-pixel decoder is reconstruction-oriented, optimized to invert the encoder rather than synthesize more details, and becomes increasingly costly at megapixel scale. This drawback calls for a more expressive and efficient decoding paradigm. Motivated by recent progress in scalable pixel-space diffusion, we introducePiD, aPixel diffusionDecoder that reformulates latent decoding as conditional pixel diffusion, unifying decoding and upsampling into one generative module. By denoising directly in high-resolution pixel space,PiDsynthesizes 4× and even 8× upscaled images with low latency. For latent conditioning, a lightweight sigma-aware adapter injects noise-corrupted latents into the pixel diffusion backbone, enablingPiDto decode partially denoised latents and terminate the latent diffusion process early. To further improve efficiency, we distill the model using DMD2, reducing inference to just 4 steps.PiDapplies to both conventional VAE latents and semantic latents (e.g., SigLIP, DINOv2) used in recent RAE-based models.PiDdecodes latents of 512×512 images into 2048×2048 pixels in under 1 second with 13 GB peak memory on a consumer RTX 5090, and as fast as 210 ms on a GB200 GPU, about 6× faster than cascaded diffusion-based super-resolution pipelines with better visual fidelity.
Results
From Latent to Pixels
Select a latent space and move the step slider to compare PiD decoding quality at different early-termination points. Drag thewhite divideron each image to reveal the VAE/RAE decode vs. PiD decode.
4K Decode
Direct latent→4K decoding with PiD. Click any image to launch a side-by-side comparison against the VAE decoder.
Baseline Comparison
Hover over any image to activate the synchronized zoom lens across all six views.
Quantitative Results(Decoding + Upsampling, 512² → 2048²)
End-to-End Decoding Latency (ms) ↓
PiD is up to5.9× fasterthan SeedVR2 (211.2 ms vs 1237.5 ms)
Gemini-3-Flash Judge Rating (%) ↑
% of evaluations where judges preferPiDover each baseline
Method
**Overview of PiD.**PiD unifies latent decoding and upsampling as a single latent-conditioned pixel diffusion model that predicts the target-resolution pixel-space velocity field. Noise-corrupted latent training and sigma-aware gating make the decoder robust to partially denoised latents, enabling early exit from the base LDM while preserving high-resolution output quality.
相似文章
nVIDIA/PiD
NVIDIA 发布 PiD(Pixel Diffusion Decoder),这是一个条件像素空间扩散模型,将潜在空间到像素的解码和上采样统一到一个生成模块中,一次性生成超分辨率图像。模型检查点和 VAE 权重在非商业许可下发布。
@xuanchi13: 潜在vs像素的争论没有抓住要点。GPT Image 2 展示了用户注意到的:像素级保真度。潜在模型...
NVIDIA 推出了 PiD,一种 Pixel Diffusion Decoder,用其替换潜在扩散模型中的传统 VAE/RAE 解码器,实现快速高分辨率解码,速度提升高达 6 倍,并改进了视觉保真度。
PiD:基于像素扩散的快速高分辨率潜在解码
PiD 提出了一种像素扩散解码器,将潜在解码重新定义为条件像素扩散,从而在高分辨率下实现快速、高质量的图像合成,并降低计算需求。在消费级硬件上,它能在不到一秒内将潜在表示解码为 4 倍或 8 倍放大图像。
视频生成的并行解码(10分钟阅读)
NVIDIA推出并行解码蒸馏(PDD)技术,用于加速图像和视频生成,能够以更少的神经函数评估在LTX-2.3和Wan2.1-14B等模型上实现高质量输出。
zhen-nan/L2P
L2P 提出了一种高效的迁移范式,利用预训练的潜在扩散模型构建像素空间扩散模型,从而在极小的计算开销和数据需求下实现高质量生成,并支持原生 4K 分辨率。