Maximizing the Position Embedding for Vision Transformers with Global Average Pooling
Wonjun Lee, Bumsub Ham, Suhyun Kim
TL;DR
This work tackles the limited expressiveness of position embeddings in vision transformers when using GAP and Layer-wise structures. It reveals a counterbalancing role for PE across layers and proposes MPVG, which feeds PE into the Last LN to maximize its effectiveness while preserving layer-wise dynamics. Empirical results across image classification, object detection, and semantic segmentation show MPVG consistently outperforms prior methods including PVG, with notable gains on ImageNet-1K (e.g., DeiT-Ti from 72.14% to 73.51%) and CIFAR-100 (ViT-Lite from 74.90% to 76.87%), as well as downstream tasks (COCO AP, ADE20K mIoU). The findings imply that maintaining PE-driven counterbalancing directionality improves ViT performance under GAP, offering a practical, broadly applicable adjustment to PE design in vision transformers.
Abstract
In vision transformers, position embedding (PE) plays a crucial role in capturing the order of tokens. However, in vision transformer structures, there is a limitation in the expressiveness of PE due to the structure where position embedding is simply added to the token embedding. A layer-wise method that delivers PE to each layer and applies independent Layer Normalizations for token embedding and PE has been adopted to overcome this limitation. In this paper, we identify the conflicting result that occurs in a layer-wise structure when using the global average pooling (GAP) method instead of the class token. To overcome this problem, we propose MPVG, which maximizes the effectiveness of PE in a layer-wise structure with GAP. Specifically, we identify that PE counterbalances token embedding values at each layer in a layer-wise structure. Furthermore, we recognize that the counterbalancing role of PE is insufficient in the layer-wise structure, and we address this by maximizing the effectiveness of PE through MPVG. Through experiments, we demonstrate that PE performs a counterbalancing role and that maintaining this counterbalancing directionality significantly impacts vision transformers. As a result, the experimental results show that MPVG outperforms existing methods across vision transformers on various tasks.
