Summary
This paper introduces a new vision transformer backbone or various vision tasks.
The motivation is that existing transformer-based methods only generate query (Q), key (K), and value (V) features only with token-to-token correlations at one single granularity.
Therefore, this paper proposes to use grouped convolutions with different kernel size to generate qkv, thus capturing token-to-token, token-to-group, and group-to-group correlations.
With such mechanism, a new backbone GroupMixFormer is proposed. Experiments show the proposed method has obtained good performance on several popular vision tasks.
Strengths
The experiments are comprehensive, covering different scales of backbones of 1.4G to 15G FLOPS under ImageNet-1K classification.
The authors give a credit that code will be released.
The idea is easy to follow. The construction of the networks is straightforward, which changes the generation of Q K V using multi-scale convolutions with different kernel sizes.
Weaknesses
This paper is well-written. However, it presents several weaknesses concerning novelty, as outlined below:
Weakness 1:
The adoption of multi-scale approaches to generate features is not novel. For instance, P2T [1] conducts pyramid pooling tokenization for multi-scale representation while simultaneously enhancing efficiency.
IFormer [2] introduces a comprehensive inception tokenization. Thus, there have been several papers that not only capture diverse correlations but also contradict the original motivation of this paper.
Weakness 2:
In comparison with CvT [3], which was the first to introduce convolutions into QKV generation, the difference made in this paper is the substitution of classic 3x3 convolutions with an advanced version that introduces cardinality with varying kernel sizes. This change is quite trivial and has already been thoroughly investigated in advanced CNNs such as ResNeXts [4], Res2Nets [5], and ResNeSts [6].
Weakness 3:
The proposed Group-Mix Attention does not present novelty in applying a shortcut from the value to the output of attention, an approach previously proposed by CSwin [7]. The authors should clearly acknowledge the original contributions of CSwin [7].
Overall, I find this paper has limited novelty in many respects. Although it performs well, I believe this manuscript would be more suitably published in a workshop.
[1] P2T: Pyramid Pooling Transformer for Scene Understanding, TPAMI 2022
[2] Inception Transformer, NeurIPS 2022
[3] CvT: Introducing Convolutions to Vision Transformers, ICCV 2021
[4] Aggregated Residual Transformations for Deep Neural Networks, CVPR 2017
[5] Res2Net: A New Multi-scale Backbone Architecture, TPAMI 2019
[6] ResNeSt: Split-Attention Networks, CVPRW 2022
[7] CSWin Transformer: A General Vision Transformer Backbone with Cross-Shaped Windows, CVPR 2022
Questions
Please refer to the weakness, which is mainly related to the limited novelty.
Rating
3: reject, not good enough
Confidence
5: You are absolutely certain about your assessment. You are very familiar with the related work and checked the math/other details carefully.