CVDec 16, 2021

How to augment your ViTs? Consistency loss and StyleAug, a random style transfer augmentation

arXiv:2112.09260v1
Originality Incremental advance
AI Analysis

This work addresses the challenge of effectively training ViTs, which have weaker inductive biases and require strong data augmentations, by proposing tailored methods for improved performance in image classification.

The paper tackled the problem of training Vision Transformers (ViTs) by evaluating data augmentation strategies and found that StyleAug, a style transfer augmentation, works best for ViTs, while RandAugment and Augmix are better for CNNs, and using a consistency loss improves ViT training.

The Vision Transformer (ViT) architecture has recently achieved competitive performance across a variety of computer vision tasks. One of the motivations behind ViTs is weaker inductive biases, when compared to convolutional neural networks (CNNs). However this also makes ViTs more difficult to train. They require very large training datasets, heavy regularization, and strong data augmentations. The data augmentation strategies used to train ViTs have largely been inherited from CNN training, despite the significant differences between the two architectures. In this work, we empirical evaluated how different data augmentation strategies performed on CNN (e.g., ResNet) versus ViT architectures for image classification. We introduced a style transfer data augmentation, termed StyleAug, which worked best for training ViTs, while RandAugment and Augmix typically worked best for training CNNs. We also found that, in addition to a classification loss, using a consistency loss between multiple augmentations of the same image was especially helpful when training ViTs.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes