Improving Vision Transformers by Overlapping Heads in Multi-Head Self-Attention
Tianxiao Zhang, Bo Luo, Guanghui Wang
TL;DR
This work addresses the limited inter-head information exchange in Vision Transformers by introducing Multi-Overlapped-Head Self-Attention (MOHSA), which overlappingly combines $Q$, $K$, and $V$ across neighboring heads during attention and uses zero padding for end heads. The method is formalized with $Q_i'$, $K_i'$, and $V_i'$ constructed by concatenating parts from adjacent heads, followed by head-wise Attention and a projection $W'$ to restore original token dimensions; multiple overlap-ratio schemes are explored to balance accuracy and overhead. Empirically, MOHSA yields consistent improvements across ViT, CaiT, and Swin-Tiny models on CIFAR-10/100, Tiny-ImageNet, and ImageNet, with notable gains on CaiT variants (e.g., up to +5% on CIFAR-100) and relatively modest overhead. The findings suggest MOHSA as a versatile, plug-in enhancement for Vision Transformers, particularly effective when information exchange between heads is beneficial, and motivate further study of head-interaction architectures in deep vision models.
Abstract
Vision Transformers have made remarkable progress in recent years, achieving state-of-the-art performance in most vision tasks. A key component of this success is due to the introduction of the Multi-Head Self-Attention (MHSA) module, which enables each head to learn different representations by applying the attention mechanism independently. In this paper, we empirically demonstrate that Vision Transformers can be further enhanced by overlapping the heads in MHSA. We introduce Multi-Overlapped-Head Self-Attention (MOHSA), where heads are overlapped with their two adjacent heads for queries, keys, and values, while zero-padding is employed for the first and last heads, which have only one neighboring head. Various paradigms for overlapping ratios are proposed to fully investigate the optimal performance of our approach. The proposed approach is evaluated using five Transformer models on four benchmark datasets and yields a significant performance boost. The source code will be made publicly available upon publication.
