@FeitengLi: NVIDIA Spatial Intelligence Lab 提出 PiD,重新设计了 latent 扩散模型里的解码环节。 目前主流文生图都在 latent 空间生成,再用 VAE decoder 映射回像素。这个 decoder 的…

X AI KOLs Timeline 论文

摘要

NVIDIA Spatial Intelligence Lab 提出 PiD,将 latent 扩散模型的解码环节重新设计为条件像素扩散过程,统一解码与上采样,实现低延迟高分辨率解码。

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/…
查看原文
查看缓存全文

缓存时间: 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/ SD3 PiD Decode

SD3 VAE Decode

VAE Decoder

PiD

DINOv2 PiD Decode

DINOv2 RAE Decode

RAE Decoder

PiD

Z-Image PiD Decode

Z-Image VAE Decode

VAE Decoder

PiD

Flux.2 PiD Decode

Flux.2 VAE Decode

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

Hugging Face Models Trending

NVIDIA 发布 PiD(Pixel Diffusion Decoder),这是一个条件像素空间扩散模型,将潜在空间到像素的解码和上采样统一到一个生成模块中,一次性生成超分辨率图像。模型检查点和 VAE 权重在非商业许可下发布。

PiD:基于像素扩散的快速高分辨率潜在解码

Hugging Face Daily Papers

PiD 提出了一种像素扩散解码器,将潜在解码重新定义为条件像素扩散,从而在高分辨率下实现快速、高质量的图像合成,并降低计算需求。在消费级硬件上,它能在不到一秒内将潜在表示解码为 4 倍或 8 倍放大图像。

视频生成的并行解码(10分钟阅读)

TLDR AI

NVIDIA推出并行解码蒸馏(PDD)技术,用于加速图像和视频生成,能够以更少的神经函数评估在LTX-2.3和Wan2.1-14B等模型上实现高质量输出。

zhen-nan/L2P

Hugging Face Models Trending

L2P 提出了一种高效的迁移范式,利用预训练的潜在扩散模型构建像素空间扩散模型,从而在极小的计算开销和数据需求下实现高质量生成,并支持原生 4K 分辨率。