Configuring Data Augmentations to Reduce Variance Shift in Positional Embedding of Vision Transformers
Bum Jun Kim, Sang Woo Kim
TL;DR
Vision transformers rely on absolute positional embeddings, and standard CNN-oriented augmentations can perturb input variance, causing variance-shift that undermines test-time performance. The authors provide a theoretical framework for variance propagation in ViTs, showing that maintaining consistent train/test variance ratios between patch inputs and positional embeddings is essential, and that common augmentations (Mixup, random resize crop) can break this balance while Cutmix remains safe. They propose practical remedies: rescale upsampled positional embeddings by $1/\sqrt{k}$ to align train/test variances, and configure random erasing with pixel mode and default mean-std normalization; they also caution against Mixup when training ViTs. Empirical results on ImageNet classification and semantic segmentation demonstrate that these variance-consistency guidelines yield measurable performance gains, offering actionable augmentation strategies for ViTs and clarifying when CNN-style augmentations translate well to transformer-based vision models.
Abstract
Vision transformers (ViTs) have demonstrated remarkable performance in a variety of vision tasks. Despite their promising capabilities, training a ViT requires a large amount of diverse data. Several studies empirically found that using rich data augmentations, such as Mixup, Cutmix, and random erasing, is critical to the successful training of ViTs. Now, the use of rich data augmentations has become a standard practice in the current state. However, we report a vulnerability to this practice: Certain data augmentations such as Mixup cause a variance shift in the positional embedding of ViT, which has been a hidden factor that degrades the performance of ViT during the test phase. We claim that achieving a stable effect from positional embedding requires a specific condition on the image, which is often broken for the current data augmentation methods. We provide a detailed analysis of this problem as well as the correct configuration for these data augmentations to remove the side effects of variance shift. Experiments showed that adopting our guidelines improves the performance of ViTs compared with the current configuration of data augmentations.
