REVIEW 2 major objections 5 minor 60 references
DGSeg: Dynamic Gating of Semantic-Spatial Guided Predictions for Reasoning Segmentation
T0 review · 2 major / 5 minor · reviewed 2026-07-11 · grok-4.5
Pith's one-line read Separate semantic and spatial cues, then learn which branch to trust pixel by pixel, yields stronger reasoning segmentation.
desk verdict Clean dual-branch + gate recipe that actually moves ReasonSeg numbers; soft spots are real but not load-bearing. 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
Dynamic gating module: a two-layer convolutional network that reads concatenated pixel-decoder features from the semantic and spatial branches and outputs a pixel-wise fusion weight map, trained with soft targets derived from each branch’s IoU against ground truth plus an entropy penalty.
What would settle it
Replace the learned gate with simple averaging or with the stronger single branch alone on the same dual-branch outputs; if the final gIoU on ReasonSeg no longer rises above the stronger branch or the average, the claim that relative-quality supervision is necessary collapses.
Extended reading notes
Core claim
Isolating complementary semantic and spatial cues into separate segmentation branches and training a dynamic gate with relative branch-quality supervision lets the system suppress ambiguous or erroneous regions that would otherwise contaminate a joint prediction, producing masks that stay closer to the original reasoning intent.
Load-bearing premise
The soft fusion target built from each branch’s IoU against the ground-truth mask is assumed to give an unbiased enough teaching signal for the gate, even though both branches share the same frozen backbone and their quality already depends on the cues produced in the first training stage.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. DGSeg addresses reasoning segmentation by having an MLLM produce complementary semantic (textual description) and spatial (bounding box) cues, routing them through separate SAM3 branches, and fusing the resulting mask logits with a lightweight dynamic gating module. The gate is trained with relative branch-quality supervision derived from per-branch IoU against ground truth (Eqs. 8–9), plus an entropy penalty, under a two-stage protocol (GRPO for cue generation, then supervised gate training). On ReasonSeg under a zero-shot setting the method reports 66.0/60.0 gIoU (3B) and 69.6/67.3 gIoU (7B), with competitive RefCOCO-family results and ablations that isolate dual-branch isolation, reward design, and learnable fusion.
Significance. If the reported gains hold, the work supplies a practical and efficient alternative to iterative MLLM refinement for mitigating noisy intermediate cues in MLLM-guided segmentation. The dual-branch isolation plus learnable fusion pipeline is cleanly motivated, the ablations (Tables 3–5) and correlation analysis (Fig. 3) give concrete evidence that the gate tracks relative branch quality, and the computational overhead is modest (Table 6). Code release further strengthens reproducibility. The contribution is incremental rather than paradigm-shifting, but it is a solid, well-executed advance for the reasoning-segmentation literature.
major comments (2)
- Section 3.2 / Eq. (9): the soft target W* is computed from IoU of the same frozen SAM3 backbone against ground truth for both branches. While Table 3 shows that non-learnable and alternative learnable fusions already improve over joint encoding, the paper should more explicitly discuss whether this supervision can overfit to Stage-1 cue idiosyncrasies rather than generalizable reliability cues, and whether the gate transfers when Stage-1 cues are produced by a different MLLM or reward schedule.
- Table 1 and Section 4.1: training uses only 9k RefCOCOg instances with no ReasonSeg data, yet the strongest claims are zero-shot ReasonSeg numbers. A short analysis of failure modes on ReasonSeg (e.g., queries requiring multi-hop or functional reasoning where both cues fail) would better bound the claim that complementary cues plus gating preserve reasoning intent.
minor comments (5)
- Section 3.1: the precise architecture of F_dg (kernel sizes, channels of the two conv layers) is underspecified in the main text; a short description or pointer to the supplement would aid reimplementation.
- Eq. (2)–(4): notation for feature resolution (h,w) versus logit resolution is clear, but the upsampling operator for W↑ is not named; bilinear vs. nearest should be stated.
- Table 2: SAM3 Agent scores are markedly lower than other 7B baselines; a brief note on why the comparison is still informative would help readers interpret the gap.
- Fig. 3 caption and surrounding text: the Pearson r=0.637 is reported without sample size or p-value; adding these would strengthen the correlation claim.
- Minor typography: occasional missing spaces after commas/periods and inconsistent hyphenation of “semantic–spatial” vs. “semantic-spatial” appear throughout.
Circularity Check
No significant circularity: empirical dual-branch + gating pipeline evaluated zero-shot on held-out benchmarks; no equation or claim reduces reported gIoU to a fitted input by construction.
full rationale
DGSeg is a standard two-stage empirical CV pipeline (GRPO cue generation on RefCOCOg followed by supervised dynamic-gate training). The soft target W* (Eq. 9) is ordinary relative-quality supervision for a fusion head; it is never presented as a first-principles derivation of the final masks, and the headline numbers (69.6/67.3 gIoU) are measured zero-shot on ReasonSeg, which is never used in training. Ablations (Tables 3–5) show gains from dual-branch isolation alone and from multiple alternative fusion schemes, so the result is not forced by the particular form of W*. Citations are to external baselines (LISA, Seg-Zero, SAM3, etc.) and do not supply a uniqueness theorem or ansatz that the present claims rest upon. No self-definitional loop, fitted-parameter-as-prediction, or load-bearing self-citation chain exists. Circularity score is therefore zero.
Assumptions & free parameters
free parameters (3)
- temperature τ in soft fusion target W*
- loss weights λ_w, λ_ent and their annealing schedule
- Stage-2 learning rate and weight decay =
1e-4
assumptions (3)
- domain assumption Qwen2.5-VL can be RL-finetuned with GRPO to emit parseable semantic descriptions and boxes that are useful for SAM3.
- domain assumption SAM3’s pixel-decoder features contain sufficient information to judge relative reliability of two prompt-conditioned branches.
- ad hoc to paper Relative IoU of the two branch masks against ground truth is a valid soft target for learning fusion weights.
invented entities (2)
-
dynamic gating module F_dg
-
relative branch-quality supervision (soft target W*)
Cite this review
Pith. "Pith review of DGSeg: Dynamic Gating of Semantic-Spatial Guided Predictions for Reasoning Segmentation." pith.science (2026). https://pith.science/paper/OZAB5BOV
@misc{pith2026260704779,
author = {Pith},
title = {Pith review of: DGSeg: Dynamic Gating of Semantic-Spatial Guided Predictions for Reasoning Segmentation},
year = {2026},
howpublished = {\url{https://pith.science/paper/OZAB5BOV}},
note = {Machine review of arXiv:2607.04779}
}
read the original abstract
Reasoning segmentation aims to predict pixel-wise masks for targets given complex language queries. Existing approaches leverage Multimodal Large Language Models (MLLMs) for vision-language reasoning and generate intermediate target cues (e.g., points or boxes) to guide a segmentation model. However, compressing rich reasoning into sparse cues often introduces ambiguity and noise, preventing these cues from accurately preserving the reasoning intent. While multiple complementary cues can enrich target information, existing methods typically feed them jointly into a single segmentation process, allowing ambiguous or erroneous cues to affect the entire prediction. Therefore, we propose DGSeg, a reasoning segmentation framework that learns to fuse predictions guided by semantic and spatial cues. Specifically, the MLLM jointly reasons about both target identity and spatial location, producing complementary semantic and spatial cues that are fed into separate segmentation branches. Their predictions are adaptively integrated by a lightweight dynamic gating module trained with relative branch-quality supervision to suppress noisy or conflicting regions. Extensive experiments demonstrate that DGSeg consistently outperforms strong baselines on multiple benchmarks and achieves 69.6% and 67.3% gIoU on the challenging ReasonSeg validation and test splits. Code is available at https://github.com/RZZeng/DGSeg.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:2309.16609 (2023) 16 Zeng et al
Bai, J., Bai, S., Chu, Y., Cui, Z., Dang, K., Deng, X., Fan, Y., Ge, W., Han, Y., Huang, F., et al.: Qwen technical report. arXiv preprint arXiv:2309.16609 (2023) 16 Zeng et al
arXiv 2023
-
[2]
arXiv preprint arXiv:2308.12966 (2023)
Bai, J., Bai, S., Yang, S., Wang, S., Tan, S., Wang, P., Lin, J., Zhou, C., Zhou, J.: Qwen-vl: A versatile vision-language model for understanding, localization, text reading, and beyond. arXiv preprint arXiv:2308.12966 (2023)
arXiv 2023
-
[3]
arXiv preprint arXiv:2502.13923 (2025)
Bai, S., Chen, K., Liu, X., Wang, J., Ge, W., Song, S., Dang, K., Wang, P., Wang, S., Tang, J., et al.: Qwen2.5-vl technical report. arXiv preprint arXiv:2502.13923 (2025)
arXiv 2025
-
[4]
In: ECCV (2024)
Bao, X., Sun, S., Ma, S., Zheng, K., Guo, Y., Zhao, G., Zheng, Y., Wang, X.: Cores: Orchestrating the dance of reasoning and segmentation. In: ECCV (2024)
2024
-
[5]
arXiv preprint arXiv:2511.16719 (2025)
Carion, N., Gustafson, L., Hu, Y.T., Debnath, S., Hu, R., Suris, D., Ryali, C., Alwala,K.V.,Khedr,H.,Huang,A.,etal.:Sam3:Segmentanythingwithconcepts. arXiv preprint arXiv:2511.16719 (2025)
arXiv 2025
-
[6]
In: ECCV (2020)
Carion, N., Massa, F., Synnaeve, G., Usunier, N., Kirillov, A., Zagoruyko, S.: End- to-end object detection with transformers. In: ECCV (2020)
2020
-
[7]
In: CVPR (2024)
Chen, B., Xu, Z., Kirmani, S., Ichter, B., Sadigh, D., Guibas, L., Xia, F.: Spa- tialvlm: Endowing vision-language models with spatial reasoning capabilities. In: CVPR (2024)
2024
-
[8]
In: ECCV (2024)
Chen, Y.C., Li, W.H., Sun, C., Wang, Y.C.F., Chen, C.S.: Sam4mllm: Enhance multi-modal large language model for referring expression segmentation. In: ECCV (2024)
2024
Show all 60 references
-
[9]
arXiv preprint arXiv:2412.05271 (2024)
Chen, Z., Wang, W., Cao, Y., Liu, Y., Gao, Z., Cui, E., Zhu, J., Ye, S., Tian, H., Liu, Z., et al.: Expanding performance boundaries of open-source multimodal models with model, data, and test-time scaling. arXiv preprint arXiv:2412.05271 (2024)
2024 arXiv
-
[10]
In: CVPR (2024)
Chen, Z., Wu, J., Wang, W., Su, W., Chen, G., Xing, S., Zhong, M., Zhang, Q., Zhu, X., Lu, L., et al.: Internvl: Scaling up vision foundation models and aligning for generic visual-linguistic tasks. In: CVPR (2024)
2024
-
[11]
In: NeurIPS (2017)
Christiano, P.F., Leike, J., Brown, T.B., Martic, M., Legg, S., Amodei, D.: Deep reinforcement learning from human preferences. In: NeurIPS (2017)
2017
-
[12]
In: ICRA (2024)
Collins, J.A., Houff, C., Tan, Y.L., Kemp, C.C.: Forcesight: Text-guided mobile manipulation with visual-force goals. In: ICRA (2024)
2024
-
[13]
In: NeurIPS (2023)
Dai, W., Li, J., Li, D., Tiong, A.M.H., Zhao, J., Wang, W., Li, B., Fung, P., Hoi, S.: Instructblip: Towards general-purpose vision-language models with instruction tuning. In: NeurIPS (2023)
2023
-
[14]
In: CVPR (2009)
Deng, J., Dong, W., Socher, R., Li, L.J., Li, K., Fei-Fei, L.: Imagenet: A large-scale hierarchical image database. In: CVPR (2009)
2009
-
[15]
In: ICLR (2026)
Du, T., Li, H., Fan, Z., Zhang, J., Pan, P., Zhang, Y.: Sam-veteran: An mllm-based human-like sam agent for reasoning segmentation. In: ICLR (2026)
2026
-
[16]
In: ICLR (2025)
Fan, Q., Tao, X., Ke, L., Ye, M., Zhang, D., Wan, P., Tai, Y.W., Tang, C.K.: Stable segment anything model. In: ICLR (2025)
2025
-
[17]
In: ICLR (2025)
He, H., Li, G., Geng, Z., Xu, J., Peng, Y.: Analyzing and boosting the power of fine-grained visual recognition for multi-modal large language models. In: ICLR (2025)
2025
-
[18]
arXiv preprint arXiv:2512.24023 (2025)
He, X., Zhang, Y., Gao, S., Li, W., Hong, L., Chen, M., Jiang, K., Fu, J., Zhang, W.: Rsagent: Learning to reason and act for text-guided segmentation via multi- turn tool invocations. arXiv preprint arXiv:2512.24023 (2025)
2025
-
[19]
In: ICLR (2022)
Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: Lora: Low-rank adaptation of large language models. In: ICLR (2022)
2022
-
[20]
In: CVPR (2024) DGSeg 17
Hu, Y., Stretcu, O., Lu, C.T., Viswanathan, K., Hata, K., Luo, E., Krishna, R., Fuxman, A.: Visual program distillation: Distilling tools and programmatic rea- soning into vision-language models. In: CVPR (2024) DGSeg 17
2024
-
[21]
In: NeurIPS (2025)
Huang, J., Xu, Z., Zhou, J., Liu, T., Xiao, Y., Ou, M., Ji, B., Li, X., Yuan, K.: Sam-r1: Leveraging sam for reward feedback in multimodal segmentation via rein- forcement learning. In: NeurIPS (2025)
2025
-
[22]
In: ICML (2021)
Jia, C., Yang, Y., Xia, Y., Chen, Y.T., Parekh, Z., Pham, H., V.Le, Q., Sung, Y., Li, Z., Duerig, T.: Scaling up visual and vision-language representation learning with noisy text supervision. In: ICML (2021)
2021
-
[23]
In: CVPR (2025)
Kang, S., Kim, J., Kim, J., Hwang, S.J.: Your large vision-language model only needs a few attention heads for visual grounding. In: CVPR (2025)
2025
-
[24]
In: EMNLP (2014)
Kazemzadeh, S., Ordonez, V., Matten, M., Berg, T.L.: Referitgame: Referring to objects in photographs of natural scenes. In: EMNLP (2014)
2014
-
[25]
In: ICCV (2023)
Kirillov, A., Mintun, E., Ravi, N., Mao, H., Rolland, C., Gustafson, L., Xiao, T., Whitehead, S., Berg, A.C., Lo, W.Y., et al.: Segment anything. In: ICCV (2023)
2023
-
[26]
In: CVPR (2024)
Lai, X., Tian, Z., Chen, Y., Li, Y., Yuan, Y., Liu, S., Jia, J.: Lisa: Reasoning segmentation via large language model. In: CVPR (2024)
2024
-
[27]
In: NeurIPS (2021)
Li,J.,Selvaraju,R.R.,Gotmare,A.D.,Joty,S.,Xiong,C.,Hoi,S.C.H.:Alignbefore fuse: Vision and language representation learning with momentum distillation. In: NeurIPS (2021)
2021
-
[28]
In: CVPR (2023)
Liang, F., Wu, B., Dai, X., Li, K., Zhao, Y., Zhang, H., Zhang, P., Vajda, P., Marculescu, D.: Open-vocabulary semantic segmentation with mask-adapted clip. In: CVPR (2023)
2023
-
[29]
In: ICLR (2025)
Lin, Y., Li, H., Shao, W., Yang, Z., Zhao, J., He, X., Luo, P., Zhang, K.: Samrefiner: Taming segment anything model for universal mask refinement. In: ICLR (2025)
2025
-
[30]
In: CVPR (2023)
Liu, C., Ding, H., Jiang, X.: Gres: Generalized referring expression segmentation. In: CVPR (2023)
2023
-
[31]
In: NeurIPS (2023)
Liu, H., Li, C., Wu, Q., Lee, Y.J.: Visual instruction tuning. In: NeurIPS (2023)
2023
-
[32]
arXiv preprint arXiv:2510.16785 (2025)
Liu, J., Chen, L.: Segmentation as a plug-and-play capability for frozen multimodal llms. arXiv preprint arXiv:2510.16785 (2025)
2025
-
[33]
arXiv preprint arXiv:2503.06520 (2025)
Liu, Y., Peng, B., Zhong, Z., Yue, Z., Lu, F., Yu, B., Jia, J.: Seg-zero: Reasoning-chain guided segmentation via cognitive reinforcement. arXiv preprint arXiv:2503.06520 (2025)
2025 arXiv
-
[34]
arXiv preprint arXiv:2505.12081 (2025)
Liu, Y., Qu, T., Zhong, Z., Peng, B., Liu, S., Yu, B., Jia, J.: Visionreasoner: Unified reasoning-integrated visual perception via reinforcement learning. arXiv preprint arXiv:2505.12081 (2025)
2025
-
[35]
In: ACL (2025)
Lu, Y., Cao, J., Wu, Y., Li, B., Tang, L., Ji, Y., Wu, C., Wu, J., Zhu, W.: Rsvp: Reasoning segmentation via visual prompting and multi-modal chain-of-thought. In: ACL (2025)
2025
-
[36]
arXiv preprint arXiv:2510.11173 (2025)
Lu, Z., Li, L., Wang, J., Feng, Y., Chen, B., Chen, K., Wang, Y.: Coprs: Learning positional prior from chain-of-thought for reasoning segmentation. arXiv preprint arXiv:2510.11173 (2025)
2025
-
[37]
MIT press (2010)
Marr, D.: Vision: A computational investigation into the human representation and processing of visual information. MIT press (2010)
2010
-
[38]
In: CVPR (2025)
Qian, R., Yin, X., Dou, D.: Reasoning to attend: Try to understand how< seg> token works. In: CVPR (2025)
2025
-
[39]
In: ICML (2021)
Radford, A., Kim, J.W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al.: Learning transferable visual models from natural language supervision. In: ICML (2021)
2021
-
[40]
In: ICLR (2025) 18 Zeng et al
Ravi, N., Gabeur, V., Hu, Y.T., Hu, R., Ryali, C., Ma, T., Khedr, H., Rädle, R., Rolland, C., Gustafson, L., et al.: Sam 2: Segment anything in images and videos. In: ICLR (2025) 18 Zeng et al
2025
-
[41]
arXiv preprint arXiv:2401.14159 (2024)
Ren, T., Liu, S., Zeng, A., Lin, J., Li, K., Cao, H., Chen, J., Huang, X., Chen, Y., Yan, F., et al.: Grounded sam: Assembling open-world models for diverse visual tasks. arXiv preprint arXiv:2401.14159 (2024)
2024 arXiv
-
[42]
In: CVPR (2024)
Ren, Z., Huang, Z., Wei, Y., Zhao, Y., Fu, D., Feng, J., Jin, X.: Pixellm: Pixel reasoning with large multimodal model. In: CVPR (2024)
2024
-
[43]
arXiv preprint arXiv:2402.03300 (2024)
Shao, Z., Wang, P., Zhu, Q., Xu, R., Song, J., Bi, X., Zhang, H., Zhang, M., Li, Y., Wu, Y., et al.: Deepseekmath: Pushing the limits of mathematical reasoning in open language models. arXiv preprint arXiv:2402.03300 (2024)
2024 arXiv
-
[44]
arXiv preprint arXiv:2505.18816 (2025)
Shen, Y., Li, C., Xiong, F., Jeong, J.O., Wang, T., Latman, M., Unberath, M.: Reasoning segmentation for images and videos: A survey. arXiv preprint arXiv:2505.18816 (2025)
2025 arXiv
-
[45]
arXiv preprint arXiv:2302.13971 (2023)
Touvron, H., Lavril, T., Izacard, G., Martinet, X., Lachaux, M.A., Lacroix, T., Rozière, B., Goyal, N., Hambro, E., Azhar, F., et al.: Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971 (2023)
2023 arXiv
-
[46]
In: CVPR (2024)
Vuong, A.D., Vu, M.N., Huang, B., Nguyen, N., Le, H., Vo, T., Nguyen, A.: Language-driven grasp detection. In: CVPR (2024)
2024
-
[47]
arXiv preprint arXiv:2409.12191 (2024)
Wang, P., Bai, S., Tan, S., Wang, S., Fan, Z., Bai, J., Chen, K., Liu, X., Wang, J., Ge, W., et al.: Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution. arXiv preprint arXiv:2409.12191 (2024)
2024 arXiv
-
[48]
Wang,S.,Fang,G.,Kong,L.,Li,X.,Xu,J.,Yang,S.,Li,Q.,Zhu,J.,Wang,X.:Pix- elthink:Towardsefficientchain-of-pixelreasoning.arXivpreprintarXiv:2505.23727 (2025)
2025 arXiv
-
[49]
In: ICASSP (2025)
Wang, Y., Gao, D., Li, B., Long, R., Yi, L., Cai, X., Yang, L., Zhang, J., Yu, S., Xuan, Q.: Cof: Coarse to fine-grained image understanding for multi-modal large language models. In: ICASSP (2025)
2025
-
[50]
In: NeurIPS (2022)
Wei, J., Wang, X., Schuurmans, D., Bosma, M., Xia, F., Chi, E.H., Le, Q.V., Zhou, D., et al.: Chain-of-thought prompting elicits reasoning in large language models. In: NeurIPS (2022)
2022
-
[51]
In: ECCV (2024)
Yan, C., Wang, H., Yan, S., Jiang, X., Hu, Y., Kang, G., Xie, W., Gavves, E.: Visa: Reasoning video object segmentation via large language models. In: ECCV (2024)
2024
-
[52]
In: CVPR (2022)
Yang, Z., Wang, J., Tang, Y., Chen, K., Zhao, H., Torr, P.H.: Lavt: Language-aware vision transformer for referring image segmentation. In: CVPR (2022)
2022
-
[53]
Yao, Y., Li, L., Song, J., Chen, C., He, Z., Wang, Y., Wang, X., Gu, T., Li, J., Teng, Y., et al.: Argus inspection: do multimodal large language models possess the eye of panoptes? In: ACMMM (2025)
2025
-
[54]
arXiv preprint arXiv:2506.22624 (2025)
You, Z., Wu, Z.: Seg-r1: Segmentation can be surprisingly simple with reinforce- ment learning. arXiv preprint arXiv:2506.22624 (2025)
2025 arXiv
-
[55]
In: ECCV (2016)
Yu, L., Poirson, P., Yang, S., Berg, A.C., Berg, T.L.: Modeling context in referring expressions. In: ECCV (2016)
2016
-
[56]
arXiv preprint arXiv:2501.04001 (2025)
Yuan, H., Li, X., Zhang, T., Sun, Y., Huang, Z., Xu, S., Ji, S., Tong, Y., Qi, L., Feng, J., Ming-Hsuan, Y.: Sa2va: Marrying sam2 with llava for dense grounded understanding of images and videos. arXiv preprint arXiv:2501.04001 (2025)
2025 arXiv
-
[57]
In: AAAI (2026)
Zhou, Q., Yang, L., Jia, Y., Gao, J., Ni, W., Wu, J., Wang, Q.: Reasoning via implicit self-supervised emergence for instruction segmentation. In: AAAI (2026)
2026
-
[58]
In: AAAI (2026)
Zhu, L., Ouyang, B., Zhang, Y., Cheng, T., Hu, R., Shen, H., Ran, L., Chen, X., Yu, L., Liu, W., Xinggang, W.: Lens: Learning to segment anything with unified reinforced reasoning. In: AAAI (2026)
2026
-
[59]
In: CVPR (2025) DGSeg 19
Zhu, M., Tian, Y., Chen, H., Zhou, C., Guo, Q., Liu, Y., Yang, M., Shen, C.: Segagent: Exploring pixel understanding capabilities in mllms by imitating human annotator trajectories. In: CVPR (2025) DGSeg 19
2025
-
[60]
In: NeurIPS (2023)
Zou, X., Yang, J., Zhang, H., Li, F., Li, L., Wang, J., Wang, L., Gao, J., Lee, Y.J.: Segment everything everywhere all at once. In: NeurIPS (2023)
2023
Reviewed July 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.