REVIEW 3 major objections 6 minor 44 references
SegPAR: Class-Centric Decision-Based Sparse Attack for Semantic Segmentation
T0 review · 3 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read SegPAR, a decision-based black-box sparse attack that explores class by class and rewards only new misclassifications, achieves the strongest black-box sparse-attack results on segmentation and remains competitive with white-box sparse…
desk verdict Solid first decision-based sparse attack for semantic segmentation; class-centric exploration plus discrepancy reward are effective, but the proxy-to-MIoU alignment and missing error bars need attention. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The two load-bearing mechanisms are class-centric exploration and the discrepancy reward. Class-centric exploration fixes binary masks $M^k_{i,j}=\mathbb{I}[f(x)_{i,j}=k]$ from the initial prediction, builds a tight bounding box around each predicted class, and uses a masked softmax distribution over that box so sampled perturbations stay inside the class region. The discrepancy mask tracks attack success relative to the original prediction, $d^{(t)}_{i,j}=\mathbb{I}[y^{(t)}_{i,j}\neq y^{(0)}_{i,j}]$, and the class-wise reward $R_d^k=\frac{1}{o^2 n}\sum_{i,j} M^k_{i,j}\,(\hat{d}^{(t)}_{i,j}-d^{(t)}_{i,j})$ gives positive feedback only to newly misclassified pixels, zero to maintained or fluctuating ones, and negative feedback to reversions. This reward removes the misleading signal that standard transition-based rewards give to pixels that revert to the original class or oscillate between wrong classes.
What would settle it
On an imbalanced segmentation benchmark, count how many perturbed pixels flip from the original prediction to a wrong class versus from one wrong class to another, and measure each subset's contribution to per-class IoU; if the discrepancy objective keeps rising while the second subset dominates or while MIoU stagnates, the proxy is not aligned with the claimed metric.
Extended reading notes
Core claim
The central claim is that image-centric pixel accumulation is the wrong unit of search for segmentation, because an image contains many heterogeneous, class-specific decision boundaries. SegPAR therefore runs the search per predicted class: it derives fixed per-class masks from the victim's initial prediction, crops the agent state to each class's bounding box, and samples perturbed pixel locations inside the class mask from a learned masked-softmax probability map. On top of this, SegPAR changes what is rewarded: instead of rewarding any prediction change between consecutive steps, a discrepancy reward scores only the marginal increase in pixels that differ from the initial prediction. The paper reports that with these two changes it achieves the best black-box sparse-attack results on Cityscapes, ADE20K, and Pascal VOC2012 across CNN and Transformer segmentation models, while remaining competitive with gradient-based white-box sparse attacks under matched budgets.
Load-bearing premise
Everything rests on the proxy that maximizing the fraction of pixels whose predicted label changes from the original prediction faithfully tracks reducing mean IoU; if most flipped pixels lie within already-wrong regions or are label swaps that do not touch per-class IoU, the claimed gains would not follow.
Editorial extensions
If this is right
- Decision-only attackers can push segmentation models to low MIoU values at roughly 2.4 to 4.0 percent pixel sparsity within a 1,000-query budget, so realistic black-box robustness evaluation should include sparse attacks.
- Attacking class regions separately lets the attacker degrade safety-critical classes such as traffic signs, traffic lights, persons, and riders much earlier than image-centric exploration does.
- Replacing the standard transition reward with the discrepancy reward suppresses pixel reversion and wasted queries, and the same reward can be plugged into other accumulation-based sparse attackers, improving their MIoU reduction at equal or lower sparsity.
- A black-box sparse attack built this way is competitive with white-box sparse baselines, outperforming PGD0 and narrowing the gap to sPGD under equal query-versus-update budgets.
- Adversarially trained segmentation models offer meaningful protection against sparse attacks on high-resolution images, but that protection appears substantially weaker at lower resolutions.
Reading between the lines
- The discrepancy reward is defined against the original prediction rather than against per-class ground truth, so the same cumulative-reward logic could transfer to other dense prediction tasks, including instance-level object detection, where reversion and fluctuation also waste queries during accumulation.
- The class-centric decomposition suggests a natural prioritization scheme: allocate more queries to safety-critical or small-area classes instead of treating all predicted classes equally, which could produce even larger practical disruption per query.
- One testable extension is to make class masks adaptive during an episode rather than fixed from the initial prediction; because the discrepancy reward is anchored to the initial prediction, refreshing masks after stable flips might accelerate convergence.
- Because the attack needs only hard labels and no ground truth, it could serve as a low-cost auditing tool for deployed segmentation systems, exposing a failure profile different from that of dense perturbation attacks.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies decision-based black-box sparse attacks on semantic segmentation, a setting the authors argue is underexplored. The proposed method, SegPAR, adapts the authors' prior RL-based attack RFPAR to a class-centric paradigm: fixed per-class masks are extracted from the initial prediction, a masked softmax action sampler restricts perturbations to each predicted class region, and a new discrepancy reward is defined as the change in the number of pixels whose prediction differs from the initial prediction. The method is evaluated against Pointwise, SparseEvo, RFPAR, Pixle, and Sparse-RS on Cityscapes, ADE20K, and VOC2012 with four segmentation architectures, plus adversarially trained models, and is compared with the white-box attacks PGD0 and sPGD. The central claims are that SegPAR with the discrepancy reward achieves the strongest black-box performance in sparsity efficiency and MIoU reduction and is competitive with white-box sparse attacks.
Significance. If the results hold, the paper would provide a useful benchmark and a practical black-box attack for dense prediction, an area where sparse decision-based attacks have received little attention. The paper's strengths include a clear formulation of the class-centric exploration idea, a mathematically clean decomposition of the standard reward into four pixel-transition cases, a new reward that correctly assigns zero reward to fluctuations and negative reward to reversion, public code, and ablations that isolate the contributions of class-centric design and the discrepancy reward. The claimed gains are large and consistent across multiple architectures and datasets. However, the evaluation rests on a single random subset per dataset without variance estimates, and the optimized proxy is not shown to be aligned with the final MIoU objective on imperfectly segmented inputs. These issues are addressable and do not invalidate the approach, but they need to be resolved before the central claims can be accepted.
major comments (3)
- [Section 2, Eq. (1); Section 4.2, Eq. (10)] The optimized objective maximizes the number of pixels whose prediction changes relative to the initial prediction f(x), and the discrepancy reward uses the same initial prediction as the reference. Because the victim models are imperfect (e.g., DeepLabV3 on Cityscapes has initial MIoU 0.798 in Table 1, so over 20% of pixels are initially wrong), the proxy gives positive reward to transitions that can increase MIoU, such as correcting an initially wrong pixel to its true class, and to wrong-to-wrong transitions that do not change per-class IoU. The paper should demonstrate empirically that positive proxy reward correlates with ground-truth MIoU decrease, for example by reporting attack performance separately on initially-correct and initially-incorrect pixels, or by plotting proxy reward against MIoU reduction over training steps. Without such evidence, the reported MIoU gains may partly reflect reward gaming rather than genuine damage.
- [Tables 1–3 and Section 5.1] All quantitative claims are based on a single fixed subset of 100 randomly sampled validation images per dataset, with no error bars, confidence intervals, or statistical significance tests. The abstract and Section 5 state that SegPAR 'significantly outperforms' baselines, but this is not supported by the reported numbers. The authors should provide means and standard deviations over multiple random subsets or training seeds, and ideally a paired significance test against the strongest baseline, to substantiate the superiority claim.
- [Section 5.5] The white-box comparison equates one black-box forward query with one white-box gradient update, where a gradient update includes both forward and backward passes. This is an ad-hoc cost model and is load-bearing for the claim that SegPAR is 'competitive with white-box sparse attacks.' The paper should justify this equivalence, for example by reporting wall-clock time or FLOPs, or at least by acknowledging that the comparison is under a nonstandard budget and showing sensitivity to the chosen equivalence factor.
minor comments (6)
- [Figure 2 caption] The caption contains garbled mathematical notation (e.g., 'd(0)', 'x(0)', and unreadable subscript expressions) that should be cleaned up for clarity.
- [Section 4.1, Eq. (3) and action sampling] The notation 'MultinomialNR(pk; n)' and the description of sampling n locations without replacement are unclear; the exact sampling procedure should be stated explicitly, including how the number of locations n is chosen relative to the class mask size.
- [Table 3] The layout of Table 3 is confusing: the 'Standard' and 'Discrepancy' subheaders alternate with model names, and the row 'DiscrepancyRFPAR' is not aligned with the model column. Please restructure the table so that each model, objective, and attack combination is unambiguous.
- [Section 5.4] The observation that applying the discrepancy reward to RFPAR on Cityscapes yields a smaller MIoU drop than the standard reward (Table 3) is attributed to sparse reward events, but the paper does not quantify how often informative reward events occur. A brief analysis of reward density would make the explanation more concrete.
- [General] The paper relies heavily on the supplementary material for experimental details such as RL training hyperparameters, reward scaling, convergence thresholds, and baseline adaptation. At least the key hyperparameters and the exact adaptation of RFPAR to segmentation should be described in the main text to make the benchmark reproducible.
- [Figure 1 caption] The phrase 'fatal semantic disruptions' is unnecessarily strong and unsupported by the reported metric; consider replacing it with a neutral description such as 'large MIoU reduction.'
Circularity Check
No significant circularity: SegPAR's contribution is an empirically evaluated attack method whose proxy objective is explicit and not disguised as a prediction.
full rationale
The paper does not derive MIoU reduction from its proxy; it explicitly states that MIoU is non-smooth and inaccessible in the black-box setting and therefore uses the fraction of changed pixels as a proxy objective (Eq. 1). The discrepancy reward (Eq. 10) is the per-class marginal gain of that same proxy, so the optimization is self-consistent rather than circular: the reward is not fitted to the measured R.MIoU values, and no fitted parameter is renamed as a prediction. The central claim is empirical, supported by evaluations against independent black-box baselines (Pointwise, SparseEvo, Pixle, Sparse-RS) and white-box methods (PGD0, sPGD) across Cityscapes, ADE20K, VOC2012, and four architectures. Self-citations to RFPAR [29] and to the boundary-geometry result [19] supply algorithmic ancestry and context; they are not invoked as uniqueness theorems or as the sole evidence for performance. The paper also self-reports a limitation (Sec. 5.4: applying R_d to RFPAR on Cityscapes yields lower sparsity but a smaller MIoU drop), which is inconsistent with a circularly forced success. The skeptic's proxy-alignment concern is a legitimate correctness risk, not circularity: it questions whether the proxy correlates with MIoU, but it does not show that the output reproduces its input. Consequently, no circular step is exhibited. The score reflects only the benign self-citation to the authors' prior RFPAR framework, which is used as the base method and as a baseline but does not carry the central claim by itself.
Assumptions & free parameters
free parameters (5)
- per-class sparsity cap =
5% of each predicted class region
- reward scaling factor o =
5
- number of sampled locations n per class step
- convergence thresholds and patience =
patience 1-2, thresholds in [1e-2, 3e-2]
- maximum steps per image =
100
assumptions (4)
- domain assumption The proxy of maximizing the fraction of changed pixels relative to the initial prediction is a valid surrogate for MIoU reduction.
- domain assumption Fixed class masks from the initial prediction provide a suitable partition for per-class exploration.
- ad hoc to paper One black-box forward query has the same cost as one white-box gradient update in the white-box comparison.
- domain assumption REINFORCE with the proposed rewards converges within the 100-step budget to a perturbation that improves the objective.
Cite this review
Pith. "Pith review of SegPAR: Class-Centric Decision-Based Sparse Attack for Semantic Segmentation." pith.science (2026). https://pith.science/paper/XC6VNCQJ
@misc{pith2026260811285,
author = {Pith},
title = {Pith review of: SegPAR: Class-Centric Decision-Based Sparse Attack for Semantic Segmentation},
year = {2026},
howpublished = {\url{https://pith.science/paper/XC6VNCQJ}},
note = {Machine review of arXiv:2608.11285}
}
read the original abstract
Despite the practical relevance of sparse decision-based black-box threats, they have received limited attention in semantic segmentation. To bridge this gap, we adapt the most representative decision-based black-box sparse attacks from the classification domain to serve as baselines, establishing a rigorous benchmark for this underexplored setting. In this context, we demonstrate that one of the existing methods suffers from severe query inefficiency due to its image-centric pixel accumulation, which rapidly exhausts query budgets across the vast image space. To overcome this, we propose SegPAR, a novel decision-based framework that shifts to a class-centric exploration paradigm. Furthermore, to eliminate the misleading feedback generated by standard decision rewards during pixel accumulation, we introduce a novel discrepancy reward. Extensive experiments show that SegPAR significantly outperforms black-box baselines in sparsity efficiency and MIoU reduction, while remaining competitive with white-box sparse attacks. Code is available at \href{https://github.com/KAU-QuantumAILab/SegPAR}{https://github.com/KAU-QuantumAILab/SegPAR}.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
CoRRabs/2303.08774(2023).https://doi.org/10.48550/arxiv.2303.08774 1
Achiam, J., Adler, S., Agarwal, S., Ahmad, L., Akkaya, I., Aleman, F.L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al.: GPT-4 Technical Report. CoRRabs/2303.08774(2023).https://doi.org/10.48550/arxiv.2303.08774 1
-
[2]
IEEE Access6, 14410–14430 (2018).https://doi.org/ 10.1109/ACCESS.2018.28073852
Akhtar, N., Mian, A.S.: Threat of Adversarial Attacks on Deep Learning in Com- puter Vision: A Survey. IEEE Access6, 14410–14430 (2018).https://doi.org/ 10.1109/ACCESS.2018.28073852
arXiv 2018
-
[3]
CoRRabs/1912.01667(2019).https://doi.org/ 10.48550/arxiv.1912.016671
Bhambri, S., Muku, S., Tulasi, A., Buduru, A.B.: A Study of Black Box Adversarial Attacks in Computer Vision. CoRRabs/1912.01667(2019).https://doi.org/ 10.48550/arxiv.1912.016671
-
[4]
In: Machine LearningandKnowledgeDiscoveryinDatabases(ECMLPKDD).LNCS,vol.8190, pp
Biggio, B., Corona, I., Maiorca, D., Nelson, B., Srndic, N., Laskov, P., Giacinto, G., Roli, F.: Evasion Attacks against Machine Learning at Test Time. In: Machine LearningandKnowledgeDiscoveryinDatabases(ECMLPKDD).LNCS,vol.8190, pp. 387–402. Springer (2013).https://doi.org/10.1007/978-3-642-40994-3_25 1
-
[5]
Carion, N., Gustafson, L., Hu, Y., Debnath, S., Hu, R., Suris, D., Ryali, C., Alwala, K.V., Khedr, H., Huang, A., Lei, J., Ma, T., Guo, B., Kalla, A., Marks, M., Greer, J., Wang, M., Sun, P., Rädle, R., Afouras, T., Mavroudi, E., Xu, K., Wu, T., Zhou, Y., Momeni, L., Hazra, R., Ding, S., Vaze, S., Porcher, F., Li, F., Li, S., Kamath, 16 D. Song et al. A.,...
-
[6]
In: IEEE Symposium on Security and Privacy (S&P)
Carlini, N., Wagner, D.A.: Towards Evaluating the Robustness of Neural Networks. In: IEEE Symposium on Security and Privacy (S&P). pp. 39–57 (2017).https: //doi.org/10.1109/SP.2017.491, 5
-
[7]
CoRRabs/1706.05587(2017).https://doi
Chen, L.C., Papandreou, G., Schroff, F., Adam, H.: Rethinking atrous convolution for semantic image segmentation. CoRRabs/1706.05587(2017).https://doi. org/10.48550/arxiv.1706.0558710
-
[8]
Chen, W., Zhang, Z., Hu, X., Wu, B.: Boosting Decision-Based Black-Box Adver- sarial Attacks with Random Sign Flip. In: ECCV. LNCS, vol. 12360, pp. 276–293. Springer (2020).https://doi.org/10.1007/978-3-030-58555-6_171
Show all 44 references
- [9]
- [10]
-
[11]
In: CVPR
Cordts, M., Omran, M., Ramos, S., Rehfeld, T., Enzweiler, M., Benenson, R., Franke, U., Roth, S., Schiele, B.: The Cityscapes Dataset for Semantic Urban Scene Understanding. In: CVPR. pp. 3213–3223 (2016).https://doi.org/10. 1109/CVPR.2016.35010
2016
-
[12]
In: AAAI
Croce, F., Andriushchenko, M., Singh, N.D., Flammarion, N., Hein, M.: Sparse-RS: A Versatile Framework for Query-Efficient Sparse Black-Box Adversarial Attacks. In: AAAI. pp. 6437–6445 (2022).https://doi.org/10.1609/AAAI.V36I6.20595 2, 5, 13
2022 doi
-
[13]
In: ICCV
Croce, F., Hein, M.: Sparse and imperceivable adversarial attacks. In: ICCV. pp. 4724–4732 (2019).https://doi.org/10.1109/ICCV.2019.004825, 14
2019
-
[14]
In: ECCV
Croce, F., Singh, N.D., Hein, M.: Towards reliable evaluation and fast training of robust semantic segmentation models. In: ECCV. vol. 15087, pp. 180–197. Springer (2024).https://doi.org/10.1007/978-3-031-72986-7_112
2024 doi
-
[15]
In: NeurIPS
Deng, Y., Wu, W., Zhang, J., Zheng, Z.: Blurred-Dilated Method for Adver- sarial Attacks. In: NeurIPS. vol. 36, pp. 48939–48950 (2023),http://papers. nips.cc/paper_files/paper/2023/hash/b6fa3ed9624c184bd73e435123bd576a- Abstract-Conference.html2
2023
- [16]
-
[17]
IJCV88(2), 303–338 (2010)
Everingham, M., Gool, L.V., Williams, C.K.I., Winn, J., Zisserman, A.: The PASCAL Visual Object Classes (VOC) Challenge. IJCV88(2), 303–338 (2010). https://doi.org/10.1007/s11263-009-0275-410
2010 doi
-
[18]
In: ICLR (2015).https://doi.org/10.48550/arxiv.1412.65721
Goodfellow, I.J., Shlens, J., Szegedy, C.: Explaining and Harnessing Adversarial Examples. In: ICLR (2015).https://doi.org/10.48550/arxiv.1412.65721
2015 doi
-
[19]
In: 2020 25th International Conference on Pattern Recognition (ICPR)
Jung, J.H., Kwon, Y.: Boundaries of single-class regions in the input space of piece- wise linear neural networks. In: 2020 25th International Conference on Pattern Recognition (ICPR). pp. 6027–6034. IEEE (2021).https://doi.org/10.1109/ ICPR48806.2021.94119655
2021
- [20]
-
[21]
CoRRabs/2406.06978(2024).https://doi
Li, Z., Li, K., Wang, S., Lan, S., Yu, Z., Ji, Y., Li, Z., Zhu, Z., Kautz, J., Wu, Z., Jiang, Y., Álvarez, J.M.: Hydra-MDP: End-to-end Multimodal Planning with Multi-target Hydra-Distillation. CoRRabs/2406.06978(2024).https://doi. org/10.48550/arxiv.2406.069781
- [22]
-
[23]
In: CVPR
Modas, A., Moosavi-Dezfooli, S., Frossard, P.: SparseFool: A Few Pixels Make a Big Difference. In: CVPR. pp. 9087–9096 (2019).https://doi.org/10.1109/ CVPR.2019.009302, 5
2019
-
[24]
In: Proc
Papernot, N., McDaniel, P., Jha, S., Fredrikson, M., Celik, Z.B., Swami, A.: The limitations of deep learning in adversarial settings. In: Proc. IEEE EuroS&P. pp. 372–387 (2016).https://doi.org/10.1109/EuroSP.2016.365
2016 doi
-
[25]
In: Proc
Papernot, N., McDaniel, P.D., Goodfellow, I.J., Jha, S., Celik, Z.B., Swami, A.: Practical Black-Box Attacks against Machine Learning. In: Proc. AsiaCCS. pp. 506–519 (2017).https://doi.org/10.1145/3052973.30530092
2017
-
[26]
IEEE Access11,11298–11306(2023).https://doi.org/10.1109/ACCESS.2023.3241360 2, 5, 13
Pomponi, J., Dántoni, D., Nicolosi, A., Scardapane, S.: Rearranging Pixels is a Powerful Black-Box Attack for RGB and Infrared Deep Learning Models. IEEE Access11,11298–11306(2023).https://doi.org/10.1109/ACCESS.2023.3241360 2, 5, 13
2023
- [27]
-
[28]
In: CVPR
Shi, Y., Wang, S., Han, Y.: Curls & Whey: Boosting Black-Box Adversarial At- tacks. In: CVPR. pp. 6519–6527 (2019).https://doi.org/10.1109/CVPR.2019. 006681
2019 doi
-
[29]
In: NeurIPS
Song, D., Ko, D., Jung, J.: Amnesia as a Catalyst for Enhancing Black Box Pixel Attacks in Image Classification and Object Detection. In: NeurIPS. vol. 37, pp. 40284–40305 (2024).https://doi.org/10.52202/079017-27662, 3, 5, 9, 10
2024 doi
-
[30]
IEEE Trans
Su, J., Vargas, D.V., Sakurai, K.: One Pixel Attack for Fooling Deep Neural Net- works. IEEE Trans. Evol. Comput.23(5), 828–841 (2019).https://doi.org/10. 1109/TEVC.2019.28908582, 5
2019
-
[31]
In: CVPR
Sun, P., Kretzschmar, H., Dotiwalla, X., Chouard, A., Patnaik, V., Tsui, P., Guo, J., Zhou, Y., Chai, Y., Caine, B., Vasudevan, V., Han, W., Ngiam, J., Zhao, H., Timofeev, A., Ettinger, S., Krivokon, M., Gao, A., Joshi, A., Zhang, Y., Shlens, J., Chen, Z., Anguelov, D.: Scalab...
2020
-
[32]
In: ICLR (2014).https:// doi.org/10.48550/arxiv.1312.61991
Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I.J., Fergus, R.: Intriguing properties of neural networks. In: ICLR (2014).https:// doi.org/10.48550/arxiv.1312.61991
2014 doi
- [33]
- [34]
-
[35]
JMLR15(1), 949–980 (2014).https://doi.org/10
Wierstra, D., Schaul, T., Glasmachers, T., Sun, Y., Peters, J., Schmidhuber, J.: Natural evolution strategies. JMLR15(1), 949–980 (2014).https://doi.org/10. 48550/arxiv.1106.44872 18 D. Song et al
2014 doi
-
[36]
Machine learning8(3), 229–256 (1992).https://doi.org/ 10.1007/BF009926969
Williams, R.J.: Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning8(3), 229–256 (1992).https://doi.org/ 10.1007/BF009926969
1992 doi
- [37]
-
[38]
NeurIPS 34, 12077–12090 (2021).https://doi.org/10.48550/arxiv.2105.1520310
Xie, E., Wang, W., Yu, Z., Anandkumar, A., Alvarez, J.M., Luo, P.: SegFormer: Simple and efficient design for semantic segmentation with transformers. NeurIPS 34, 12077–12090 (2021).https://doi.org/10.48550/arxiv.2105.1520310
-
[39]
Xu, H., Ma, Y., Liu, H., Deb, D., Liu, H., Tang, J., Jain, A.K.: Adversarial Attacks and Defenses in Images, Graphs and Text: A Review. Int. J. Autom. Comput. 17(2), 151–178 (2020).https://doi.org/10.1007/S11633-019-1211-X2
2020 doi
-
[40]
In: ICCV
Xu, X., Zhao, H., Jia, J.: Dynamic divide-and-conquer adversarial training for robust semantic segmentation. In: ICCV. pp. 7466–7475. IEEE (2021).https: //doi.org/10.1109/ICCV48922.2021.0073912
2021
-
[41]
In: CVPR
Zhao, H., Shi, J., Qi, X., Wang, X., Jia, J.: Pyramid Scene Parsing Network. In: CVPR. pp. 2881–2890 (2017).https://doi.org/10.1109/CVPR.2017.66010
2017
-
[42]
In: CVPR
Zheng, S., Lu, J., Zhao, H., Zhu, X., Luo, Z., Wang, Y., Fu, Y., Feng, J., Xiang, T., Torr, P.H., et al.: Rethinking semantic segmentation from a sequence-to-sequence perspective with transformers. In: CVPR. pp. 6881–6890 (2021).https://doi. org/10.1109/CVPR46437.2021.0068110
2021
- [43]
-
[44]
In: CVPR
Zhou, B., Zhao, H., Puig, X., Fidler, S., Barriuso, A., Torralba, A.: Scene parsing through ADE20K dataset. In: CVPR. pp. 633–641 (2017).https://doi.org/10. 1109/CVPR.2017.7410
2017
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.