Search papers, labs, and topics across Lattice.
This paper introduces a modification to Vision Transformers (ViTs) to improve segmentation performance without sacrificing classification accuracy. They modulate the self-attention mechanism with a learnable Gaussian kernel to bias attention towards neighboring patches and refine patch representations to learn better embeddings at patch positions. Experiments on ADE20K and other benchmarks demonstrate substantial segmentation gains (e.g., over 6% and 4% on ADE20K for ViT Tiny and Base) without altering the training regime.
Slapping a learnable Gaussian kernel onto ViT self-attention boosts segmentation performance by over 6% on ADE20K, proving that locality still matters for vision.
Vision transformers have demonstrated remarkable success in classification by leveraging global self-attention to capture long-range dependencies. However, this same mechanism can obscure fine-grained spatial details crucial for tasks such as segmentation. In this work, we seek to enhance segmentation performance of vision transformers after standard image-level classification training. More specifically, we present a simple yet effective add-on that improves performance on segmentation tasks while retaining vision transformers'image-level recognition capabilities. In our approach, we modulate the self-attention with a learnable Gaussian kernel that biases the attention toward neighboring patches. We further refine the patch representations to learn better embeddings at patch positions. These modifications encourage tokens to focus on local surroundings and ensure meaningful representations at spatial positions, while still preserving the model's ability to incorporate global information. Experiments demonstrate the effectiveness of our modifications, evidenced by substantial segmentation gains on three benchmarks (e.g., over 6% and 4% on ADE20K for ViT Tiny and Base), without changing the training regime or sacrificing classification performance. The code is available at https://github.com/sinahmr/LocAtViT/.