CVJul 13, 2021

CMT: Convolutional Neural Networks Meet Vision Transformers

arXiv:2107.06263v3925 citations
Originality Incremental advance
AI Analysis

This work addresses efficiency and accuracy challenges in image recognition for computer vision researchers and practitioners, though it is incremental as it builds on existing transformer and CNN methods.

The paper tackled the performance and computational cost gaps between vision transformers and convolutional neural networks by proposing CMT, a hybrid network that combines transformers for long-range dependencies and CNNs for local features, achieving 83.5% top-1 accuracy on ImageNet with 14x and 2x smaller FLOPs than DeiT and EfficientNet, respectively.

Vision transformers have been successfully applied to image recognition tasks due to their ability to capture long-range dependencies within an image. However, there are still gaps in both performance and computational cost between transformers and existing convolutional neural networks (CNNs). In this paper, we aim to address this issue and develop a network that can outperform not only the canonical transformers, but also the high-performance convolutional models. We propose a new transformer based hybrid network by taking advantage of transformers to capture long-range dependencies, and of CNNs to model local features. Furthermore, we scale it to obtain a family of models, called CMTs, obtaining much better accuracy and efficiency than previous convolution and transformer based models. In particular, our CMT-S achieves 83.5% top-1 accuracy on ImageNet, while being 14x and 2x smaller on FLOPs than the existing DeiT and EfficientNet, respectively. The proposed CMT-S also generalizes well on CIFAR10 (99.2%), CIFAR100 (91.7%), Flowers (98.7%), and other challenging vision datasets such as COCO (44.3% mAP), with considerably less computational cost.

Code Implementations14 repos

Data from Papers with Code (CC-BY-SA-4.0)

Foundations

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

Your Notes