Summary
The paper proposes SPFormer, which is a vision transformer using a superpixel representation instead of a patch-based representation.
The core module consists of two attention blocks, pixel-to-superpixel cross-attention and superpixel-to-pixel cross-attention, which alternately update the superpixel and pixel features.
In the experiments, SPFormer shows better performance on ImageNet-1k, compared to DeiT which is a patch-based baseline.
Strengths
- The paper shows the superpixel representation is superior to the patch representation in a ViT architecture.
Weaknesses
1. Incorporating superpixels into the neural nets has been well studied, and the essential difference between the proposed module and previous studies is updating the pixel feature. However, the proposed module is not compared with other clustering modules (e.g., SSN[1] and GroupViT), and the advantage of the proposed module is not verified.
2. The authors discussed the existing architecture using superpixel representation, but the authors compare the proposed method only with patch-based architecture, and there is no comparison in the experiments. In fact, the accuracy of the proposed method on ImageNet-1k is worse than that of SViT[3].
3. I wonder how useful explainability is. Visualizing superpixels just shows similar pixels and does not explain why the model makes the decision. The similarity can also be visualized by clustering pixels in post-processing.
[1] Jampani, Varun, et al. "Superpixel sampling networks." 2018
[2] Xu, Jiarui, et al. "Groupvit: Semantic segmentation emerges from text supervision." 2022
[3] Huang, Huaibo, et al. "Vision Transformer with Super Token Sampling" 2023
Questions
- The author mentioned that MHSA allows the network to capture long-range dependencies and context information among different superpixels in Sec. 3.3. However, SCA adopts the sliding window-based cross-attention, and I think it captures only local dependencies. Could you clarify it?
Rating
3: reject, not good enough
Confidence
4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.