Thanks for the reviewer's response.
We are truly pleased to hear that our rebuttal has helpfully addressed some concerns of the reviewer.
We noticed the two CVPR'23 papers[1,2] mentioned by the reviewer. Given that the CVPR 2023 conference took place after our initial submission, we did not have a chance to cite them earlier. However, we are happy to cite these papers in our revised version.
Having read the paper [2], it is evident to us that LocalMIM [2] is fundamentally different to our own work.
We would like to share a couple of key differences:
1. Our motivation is distinct from LocalMIM's. We initiated our research by uncovering a negative optimization issue in the deeper layers of networks during MIM pre-training. To the best of our knowledge, our work is the first to expose this problem, underscoring the novelty of our paper — a sentiment echoed by Reviewer 6uey.
Following this, our primary focus has been on tackling this degradation challenge.
Conversely, LocalMIM is designed for local multi-scale reconstruction where the lower and upper layers reconstruct fine-scale and coarse-scale supervisions respectively in order to accelerate the training converge speed. It is crafted with hierarchical architectures like Swin[3] in mind, which inherently contain less low-level information in the higher layers. However, the effectiveness of LocalMIM on plain Transformer architectures appears to be limited. In essence, the issue that LocalMIM tackles may not even be present in a plain Transformer architecture, as ViTs contain no downsampling operations, ensuring that low-level information is preserved in the deeper layers.
To shed light on this, our ablation study titled "MIRL vs. simple multi-decoders" (see Lines 203-212) provides an insightful perspective. The ablation results summarized in the table below indicate that LocalMIM (represented as multi-decoders) does not improve accuracy when used with a plain encoder architecture
| model | multi-decoders | vanilla MAE | MIRL|
| -------- | :-------: | :-------: | :-------: |
ViT-B-48 | 84.5 | 84.5 | 85.3 |
Additionally, based on the results provided in [1], which are listed in the table below, LocalMIM significantly improves the Swin encoder, but yields only a 0.1% accuracy increase for the ViT encoder when compared to the baseline MAE.
|method| ViT-B | Swin-B |
| -------- | :-------: | :-------: |
MAE / GreenMIM [4] | 82.9 | 83.2 |
LocalMIM-Pixels [2] | 83.0 | 83.7 |
LocalMIM-HOG [2] |83.3 | 83.8 |
The core feature of our framework, distinct from LocalMIM, is the image residual learning we propose. This methodology alleviates the degradation problem. The idea is straightforward yet has proven to be a highly practical solution to the degradation problem without bells and whistles.
2. The other distinction is that we focus on scaling deeper Vision Transformers. By leveraging MIRL, we unleashed the potential of slender ViT variants after addressing the degradation problem. As highlighted by Reviewer igwC, this is an under-explored area of research, one that LocalMIM [2] has not ventured into.
[1] Wang, Haochen, et al. "Hard patches mining for masked image modeling." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2023.
[2] Wang, Haoqing, et al. "Masked Image Modeling with Local Multi-Scale Reconstruction." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2023.
[3] Liu, Ze, et al. "Swin transformer: Hierarchical vision transformer using shifted windows." Proceedings of the IEEE/CVF international conference on computer vision. 2021.
[4] Huang, Lang, et al. "Green hierarchical vision transformer for masked image modeling." Advances in Neural Information Processing Systems 35 (2022): 19997-20010.