Denoising Vision Transformers
Jiawei Yang, Katie Z Luo, Jiefeng Li, Congyue Deng, Leonidas Guibas, Dilip Krishnan, Kilian Q Weinberger, Yonglong Tian, Yue Wang
TL;DR
This paper identifies persistent grid-like artifacts in Vision Transformer feature maps that correlate with positional embeddings and hinder dense prediction tasks. It introduces Denoising Vision Transformers (DVT), a two-stage approach that first decomposes ViT outputs per image using neural fields to separate semantics, position-related artifacts, and residuals, and then trains a lightweight denoiser to predict clean features for online use. Across six ViTs and multiple dense vision tasks, DVT yields consistent performance gains, sometimes surpassing larger models while adding only a small parameter footprint for the denoiser. The work highlights the importance of reconsidering positional embeddings in ViT design and demonstrates a practical, plug-in denoiser that improves robustness and interpretability of ViT features for dense vision applications.
Abstract
We study a crucial yet often overlooked issue inherent to Vision Transformers (ViTs): feature maps of these models exhibit grid-like artifacts, which hurt the performance of ViTs in downstream dense prediction tasks such as semantic segmentation, depth prediction, and object discovery. We trace this issue down to the positional embeddings at the input stage. To mitigate this, we propose a two-stage denoising approach, termed Denoising Vision Transformers (DVT). In the first stage, we separate the clean features from those contaminated by positional artifacts by enforcing cross-view feature consistency with neural fields on a per-image basis. This per-image optimization process extracts artifact-free features from raw ViT outputs, providing clean feature estimates for offline applications. In the second stage, we train a lightweight transformer block to predict clean features from raw ViT outputs, leveraging the derived estimates of the clean features as supervision. Our method, DVT, does not require re-training the existing pre-trained ViTs, and is immediately applicable to any Vision Transformer architecture. We evaluate our method on a variety of representative ViTs (DINO, DeiT-III, EVA02, CLIP, DINOv2, DINOv2-reg) and demonstrate that DVT consistently improves existing state-of-the-art general-purpose models in semantic and geometric tasks across multiple datasets. We hope our study will encourage a re-evaluation of ViT design, especially regarding the naive use of positional embeddings. Our code and checkpoints are publicly available.
