REVIEW 4 major objections 5 minor 6 cited by
Coherent Video Inpainting Using Optical Flow-Guided Efficient Diffusion
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Flow-guided diffusion does video inpainting faster, with better coherence
desk verdict FloED is a plausible and genuinely new system for text-guided video inpainting, but its headline claims are not yet supported because the anchor-frame prior alone beats all baselines and the efficiency numbers omit that anchor cost. 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 load-bearing mechanism is flow-guided latent interpolation performed in the predicted clean latent space $\hat{z}_0$, not on the noise estimate; at each early step, even-indexed latents are denoised normally and odd-indexed latents are obtained by bi-directional optical-flow warping of the neighboring predicted $\hat{z}_0$, then the roles alternate, halving denoising work per step for the first S steps. The flow attention cache complements this by having the time-agnostic flow branch complete the corrupted flow once at the first step, then storing the keys and values of the multi-scale flow adapters for all later steps, so adding optical flow guidance costs almost nothing at inference.
What would settle it
Measure, per denoising step, the distance between the flow-warped predicted $\hat{z}_0$ and the normally denoised $\hat{z}_0$ on videos with large motion and occlusions; if that distance grows quickly with flow magnitude or if setting S above 5 causes a sharp quality drop on such videos, the load-bearing assumption behind the speed-up is broken.
Extended reading notes
Core claim
FloED is a text-guided video inpainting framework built on a Stable Diffusion inpainting backbone with motion modules fine-tuned in two stages. Its central discovery is that corrupted optical flow, estimated by RAFT and completed by a time-agnostic flow branch, provides exactly the motion guidance diffusion-based inpainting lacks: multi-scale flow adapters placed between text cross-attention and motion modules adjust the latents so synthesized content follows the scene's movement and lighting. The efficiency claim rests on two observations: adjacent frame latents share similar motion patterns, and early denoising fixes global structure, so in the first S denoising steps a frame's latent can be replaced by flow-warping the predicted clean latent $\hat{z}_0$ of its neighbor, halving the number of latents denoised per step; and since the flow branch is time-agnostic, its keys and values can be computed once and cached. An anchor frame, inpainted by a strong text-to-image model, is concatenated to the noisy latents for extra texture guidance. The paper's reported numbers—PSNR 29.17, SSIM 0.9441, VFID 0.118, Ewarp 2.83, TC 0.994, TA 22.49 on its benchmark—are all better than the three compared open diffusion baselines, and per-frame denoising time is lower at every tested resolution.
Load-bearing premise
The speed-up rests on the assumption that, during the first few denoising steps, a frame's latent can be replaced by the flow-warped predicted clean latent of its neighbor without noticeable quality loss, which works only if adjacent latents really share similar motion and occlusion does not break the warp.
Editorial extensions
If this is right
- If FloED's numbers hold, a diffusion inpainting model can use optical flow as cheap guidance: the flow branch runs once and the flow adapter's keys and values are cached for the remaining denoising steps.
- The latent interpolation trick—warping predicted clean latents rather than noise estimates—gives a training-free speed-up that the paper says transfers to other diffusion-based video inpainting models such as CoCoCo.
- The anchor-frame strategy means video inpainting quality no longer has to wait for video models to catch up with image inpainting; a strong text-to-image model can set the texture for the sequence.
- Temporal-consistency metrics (Ewarp, TC) improve together with per-frame quality metrics, so coherence is not bought at the expense of per-frame fidelity.
- Because the flow branch is time-agnostic, the completed flow is stable across sampling steps, which is what makes the cache and the one-time flow completion valid.
Reading between the lines
- One extension the paper leaves implicit: the same flow-guided latent interpolation could be applied to the sampling of any video diffusion model, not only inpainting, whenever dense optical flow between frames is available; the paper only demoes it on its own and CoCoCo.
- The speed-up depends on the choice S=5, tuned on the paper's own benchmark; on videos with large motion or strong occlusion, the safe number of interpolation steps may be smaller, and the optimal S could be chosen adaptively from flow confidence rather than fixed.
- A testable prediction: the gap between flow-warped latents and fully denoised latents, measured in latent space after step S, should grow with motion magnitude and occlusion area; if a dataset of such hard videos is built, FloED's efficiency advantage should shrink.
- The proposed benchmark of 100 real videos paired with prompts is itself a contribution: it gives future diffusion-based video inpainting methods a common test bed, and its PSNR/SSIM numbers could be extended to include confidence intervals across the 50+50 split.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FloED, a text-guided video inpainting framework that combines a Stable Diffusion inpainting backbone with a time-agnostic optical-flow completion branch, multi-scale flow adapters, an anchor-frame strategy that injects an externally inpainted frame, and two training-free inference accelerators (flow-guided latent interpolation and a flow attention cache). The authors report state-of-the-art results on a self-created 100-video benchmark covering background restoration and object removal, comparing against VideoComposer, CoCoCo, and DiffuEraser on quality metrics (PSNR, SSIM, VFID, warping error, temporal consistency, text alignment) and runtime.
Significance. If the claims are substantiated, FloED would be a meaningful advance for text-guided video inpainting: the dual-branch flow guidance is architecturally plausible, the latent-interpolation and attention-cache mechanisms are training-free and could transfer to other diffusion pipelines, and the paper includes a user study plus component ablations. The main value is in demonstrating that optical-flow priors can be integrated into diffusion video inpainting at low overhead. However, the headline quality and efficiency claims are currently confounded by the anchor-frame prior and by incomplete timing methodology, so the significance is conditional on revising the experimental comparison.
major comments (4)
- [§5.2, Table 1 vs. §5.3, Table 2] The quality comparison against baselines is confounded by the anchor-frame strategy. Table 2 shows that adding only the anchor frame (FA=✗, AF=✓) raises PSNR from 21.30 to 25.34, which already exceeds the best baseline in Table 1 (DiffuEraser at 24.23). Since no baseline uses this external T2I inpainting prior, the margins in Table 1 are not attributable solely to the proposed flow adapter, motion-module fine-tuning, or latent interpolation. The authors should either augment all baselines with the same anchor-frame mechanism (with equivalent compute) or report FloED's quality without the anchor, and phrase the SOTA claim accordingly.
- [§5.3, Table 4] The efficiency comparison omits the anchor-frame cost: the anchor frame is generated by a separate pretrained image-inpainting model in §4.3, and that inference time is not included in the reported 'average time per frame'. Additionally, Table 4 lists DiffuEraser as slower at 256×256 (1.0336 s) than at 512×512 (0.4176 s), which is implausible under matched settings and suggests that step counts, CFG scales, or batching were not held constant. Please report end-to-end per-video time for all methods, including anchor generation, and clarify the exact inference protocol for each row.
- [§4.4, §5.3, Fig. 7] The speed-up step S=5 is selected empirically on the same 100-video benchmark that is used for the final evaluation (Fig. 7 and §5.1). Because S directly trades off quality against denoising time, tuning it on the test set biases the reported quality metrics in FloED's favor. The authors should tune S on a separate validation split and report the held-out quality--time tradeoff, or show the results across a range of S on the benchmark without selecting the best one.
- [§5.2, general experimental methodology] All headline metrics come from a self-created benchmark of 100 videos, with no error bars, confidence intervals, or significance tests for the differences in Table 1, and only three diffusion baselines are compared. Given the very large reported margins, it is important to show per-video score distributions or statistical testing to establish that the differences are not driven by a few outliers. At minimum, report the standard deviation or interquartile range for each metric.
minor comments (5)
- [§1, introduction] The introduction contains duplicated blocks of text: the paragraph beginning 'we utilize an anchor frame strategy' and the contributions list appear twice in the provided manuscript, which impairs readability and suggests an editing error.
- [§5.2, quantitative comparisons] The text says 'For OM tasks, since ground truth data is unavailable' where 'OM' should be 'OR' (object removal); please correct the abbreviation.
- [§5.3, Table 3] The table entry '6nd„25th' is a typesetting artifact; it should read '6th–25th'.
- [§4.1, network overview] Reference [1] is cited as the pretrained backbone but is listed as 'stable-diffusion-2-depth', while the text says 'Stable Diffusion Inpainting backbone'; please clarify the exact backbone checkpoint and its relationship to the image-inpainting model used for the anchor frame (reference [2]).
- [§7, references] Reference [14] (DiffuEraser) is dated 2025, after the initial arXiv submission of this paper; please verify that the version compared is the one described and that no newer version changes the comparison.
Circularity Check
No circularity found: the paper's claims are empirical system comparisons, not derivations, and no output is equivalent to its input by construction.
full rationale
This is a systems/empirical paper: the central claims are that the proposed flow-guided architecture, anchor-frame prior, latent interpolation, and flow-attention cache improve quality and efficiency relative to diffusion baselines. These claims are supported by measured metrics on a newly constructed benchmark, not by a derivation chain in which a quantity is defined in terms of the result it is supposed to predict. The flow completion branch, flow adapters, anchor-frame concatenation, and latent interpolation are all stated as architectural components built on external pretrained backbones (Stable Diffusion, AnimateDiff, RAFT), and the reported gains are measured outcomes. The only self-citation in the paper, reference [5] used for the flow-warping error metric in Sec. 5.2, is a metric reference and is not load-bearing for the central contribution. The tuning of the speed-up step S=5 on the same benchmark and the potential confounding role of the anchor-frame prior are legitimate experimental-design and external-validity concerns, but they do not make the reported numbers equivalent to the inputs by construction. No equation-level circularity, fitted-parameter-renamed-as-prediction, or author-imported uniqueness argument is present, so no circular step is identified.
Assumptions & free parameters
free parameters (3)
- Speed-up step S (latent interpolation horizon) =
5
- Flow loss weight lambda =
0.1
- DDIM denoising steps =
25
assumptions (6)
- domain assumption Ground truth flow F used in L_flow is available during training and is computed from clean frames.
- domain assumption Completed optical flow gives reliable motion guidance in latent space for diffusion video inpainting.
- domain assumption Adjacent latent features share similar motion patterns, so warping can stand in for denoising a frame.
- domain assumption Early diffusion steps determine global structure, so skipping denoising via warping only in the first S steps preserves quality.
- domain assumption A single anchor frame inpainted by a text-to-image model provides useful texture guidance for the whole video sequence.
- domain assumption The self-created 100-video benchmark is representative enough to support a state-of-the-art claim.
Cite this review
Pith. "Pith review of Coherent Video Inpainting Using Optical Flow-Guided Efficient Diffusion." pith.science (2026). https://pith.science/paper/GKR5RKH4
@misc{pith2026241200857,
author = {Pith},
title = {Pith review of: Coherent Video Inpainting Using Optical Flow-Guided Efficient Diffusion},
year = {2026},
howpublished = {\url{https://pith.science/paper/GKR5RKH4}},
note = {Machine review of arXiv:2412.00857}
}
read the original abstract
The text-guided video inpainting technique has significantly improved the performance of content generation applications. A recent family for these improvements uses diffusion models, which have become essential for achieving high-quality video inpainting results, yet they still face performance bottlenecks in temporal consistency and computational efficiency. This motivates us to propose a new video inpainting framework using optical Flow-guided Efficient Diffusion (FloED) for higher video coherence. Specifically, FloED employs a dual-branch architecture, where the time-agnostic flow branch restores corrupted flow first, and the multi-scale flow adapters provide motion guidance to the main inpainting branch. Besides, a training-free latent interpolation method is proposed to accelerate the multi-step denoising process using flow warping. With the flow attention cache mechanism, FLoED efficiently reduces the computational cost of incorporating optical flow. Extensive experiments on background restoration and object removal tasks show that FloED outperforms state-of-the-art diffusion-based methods in both quality and efficiency. Our codes and models will be made publicly available.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 6 Pith papers
-
From Draft to Draft-Free: One-Step Video Object Removal via Privileged Distillation and Fast Planting
A one-step, draft-free video object removal model trained by distilling a ground-truth-conditioned teacher reaches comparable or better quality than multi-step diffusion methods while running in about 1 second.
-
Glove2Hand: Synthesizing Natural Hand-Object Interaction from Multi-Modal Sensing Gloves
A 3D-Gaussian-plus-diffusion pipeline translates multi-modal glove HOI videos into photorealistic bare-hand videos, yielding the HandSense dataset that improves contact estimation and occluded tracking.
-
ROSE: Remove Objects with Side Effects in Videos
A video inpainting model trained on 3D-rendered pairs removes objects together with their shadows, reflections, and other side effects, plus a new benchmark.
-
MiniMax-Remover: Taming Bad Noise Helps Video Object Removal
A two-stage video object remover that removes text conditioning and uses minimax adversarial noise to achieve high-quality removal in 6 sampling steps without classifier-free guidance.
-
Diff2DGS: Reliable Reconstruction of Occluded Surgical Scenes via 2D Gaussian Splatting
Diff2DGS uses diffusion video inpainting plus 2D Gaussian Splatting to reconstruct occluded deformable surgical scenes, but its geometric superiority claim rests on a circular RAFT-depth evaluation.
-
DiffuEraser: A Diffusion Model for Video Inpainting
DiffuEraser is a stable-diffusion video inpainting model that injects ProPainter priors via DDIM inversion and expands temporal receptive fields for long-sequence consistency.
Reference graph
Works this paper leans on
-
[1]
Stable Diffusion v2 , 2022. https://huggingface. co/stabilityai/stable-diffusion-2-depth . 3, 4
work page 2022
-
[2]
https://github.com/ compvis/stable-diffusion
Stable Diffusion v1.5 , 2022. https://github.com/ compvis/stable-diffusion. 4
work page 2022
-
[3]
Videocrafter1: Open diffusion models for high-quality video generation
Haoxin Chen, Menghan Xia, Yingqing He, Yong Zhang, Xiaodong Cun, Shaoshu Yang, Jinbo Xing, Yaofang Liu, Qifeng Chen, Xintao Wang, Chao Weng, and Ying Shan. Videocrafter1: Open diffusion models for high-quality video generation. CoRR, abs/2310.19512, 2023. 3
-
[4]
Video inpainting with short-term windows: Application to object removal and error concealment
Mounira Ebdelli, Olivier Le Meur, and Christine Guillemot. Video inpainting with short-term windows: Application to object removal and error concealment. IEEE Trans. Image Process., 2015. 2
work page 2015
-
[5]
Two birds, one stone: A unified framework for joint learning of image and video style transfers
Bohai Gu, Heng Fan, and Libo Zhang. Two birds, one stone: A unified framework for joint learning of image and video style transfers. In IEEE/CVF International Conference on Computer Vision, ICCV 2023, Paris, France, October 1-6, 2023, pages 23488–23497. IEEE, 2023. 7
work page 2023
-
[6]
Animatediff: Animate your personalized text- to-image diffusion models without specific tuning
Yuwei Guo, Ceyuan Yang, Anyi Rao, Zhengyang Liang, Yaohui Wang, Yu Qiao, Maneesh Agrawala, Dahua Lin, and Bo Dai. Animatediff: Animate your personalized text- to-image diffusion models without specific tuning. In The Twelfth International Conference on Learning Representa- tions, ICLR 2024, Vienna, Austria, May 7-11, 2024 . Open- Review.net, 2024. 2, 3, 4
work page 2024
-
[7]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016, Las Vegas, NV , USA, June 27-30, 2016, pages 770–778. IEEE Computer Society, 2016. 4
work page 2016
-
[8]
Clipscore: A reference-free evaluation met- ric for image captioning
Jack Hessel, Ari Holtzman, Maxwell Forbes, Ronan Le Bras, and Yejin Choi. Clipscore: A reference-free evaluation met- ric for image captioning. CoRR, abs/2104.08718, 2021. 7
arXiv 2021
Show all 36 references
-
[9]
Denoising diffu- sion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffu- sion probabilistic models. In NeurIPS, 2020. 2, 3, 4, 6
2020
-
[10]
Brushnet: A plug-and-play image inpaint- ing model with decomposed dual-branch diffusion
Xuan Ju, Xian Liu, Xintao Wang, Yuxuan Bian, Ying Shan, and Qiang Xu. Brushnet: A plug-and-play image inpaint- ing model with decomposed dual-branch diffusion. CoRR, abs/2403.06976, 2024. 2, 3
2024 arXiv
-
[11]
Berg, Wan-Yen Lo, Piotr Doll ´ar, and Ross Girshick
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer White- head, Alexander C. Berg, Wan-Yen Lo, Piotr Doll ´ar, and Ross Girshick. Segment anything, 2023. 6
2023
-
[12]
Diffusion models already have A semantic latent space
Mingi Kwon, Jaeseok Jeong, and Youngjung Uh. Diffusion models already have A semantic latent space. InICLR, 2023. 5, 7
2023
-
[13]
Open-sora-plan, 2024
PKU-Yuan Lab and Tuzhan AI etc. Open-sora-plan, 2024. 5
2024
-
[14]
Dif- fueraser: A diffusion model for video inpainting
Xiaowen Li, Haolan Xue, Peiran Ren, and Liefeng Bo. Dif- fueraser: A diffusion model for video inpainting. CoRR, abs/2501.10018, 2025. 2, 3, 6
2025 arXiv
-
[15]
Towards an end-to-end framework for flow- guided video inpainting
Zhen Li, Chengze Lu, Jianhua Qin, Chun-Le Guo, and Ming- Ming Cheng. Towards an end-to-end framework for flow- guided video inpainting. In CVPR, 2022. 2, 3
2022
-
[16]
Video-chatgpt: Towards detailed video understanding via large vision and language models
Muhammad Maaz, Hanoona Rasheed, Salman Khan, and Fa- had Shahbaz Khan. Video-chatgpt: Towards detailed video understanding via large vision and language models. In Pro- ceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (ACL 2024), 2024. 6
2024
-
[17]
Video inpainting of complex scenes
Alasdair Newson, Andr ´es Almansa, Matthieu Fradet, Yann Gousseau, and Patrick P ´erez. Video inpainting of complex scenes. CoRR, 2015. 2
2015
-
[18]
Gross, and Alexander Sorkine- Hornung
Federico Perazzi, Jordi Pont-Tuset, Brian McWilliams, Luc Van Gool, Markus H. Gross, and Alexander Sorkine- Hornung. A benchmark dataset and evaluation methodology for video object segmentation. In CVPR, 2016. 3
2016
-
[19]
SDXL: improving latent diffusion models for high-resolution image synthesis
Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas M ¨uller, Joe Penna, and Robin Rombach. SDXL: improving latent diffusion models for high-resolution image synthesis. CoRR, abs/2307.01952,
-
[20]
High-resolution image syn- thesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj¨orn Ommer. High-resolution image syn- thesis with latent diffusion models. In CVPR, 2022. 3
2022
-
[21]
Denois- ing diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. In ICLR, 2021. 2, 3
2021
-
[22]
RAFT: recurrent all-pairs field transforms for optical flow (extended abstract)
Zachary Teed and Jia Deng. RAFT: recurrent all-pairs field transforms for optical flow (extended abstract). In IJCAI,
-
[23]
Video-to-video synthesis
Ting-Chun Wang, Ming-Yu Liu, Jun-Yan Zhu, Nikolai Yakovenko, Andrew Tao, Jan Kautz, and Bryan Catanzaro. Video-to-video synthesis. In NeurIPS, 2018. 7
2018
-
[24]
Videocomposer: Compositional video synthesis with motion controllability
Xiang Wang, Hangjie Yuan, Shiwei Zhang, Dayou Chen, Ji- uniu Wang, Yingya Zhang, Yujun Shen, Deli Zhao, and Jin- gren Zhou. Videocomposer: Compositional video synthesis with motion controllability. CoRR, abs/2306.02018, 2023. 6
2023 arXiv
-
[25]
Bovik, Hamid R
Zhou Wang, Alan C. Bovik, Hamid R. Sheikh, and Eero P. Simoncelli. Image quality assessment: from error visibility to structural similarity. IEEE Trans. Image Process., 2004. 7
2004
-
[26]
Bovik, Hamid R
Zhou Wang, Alan C. Bovik, Hamid R. Sheikh, and Eero P. Simoncelli. Image quality assessment: from error visibility to structural similarity. IEEE Trans. Image Process., 13(4): 600–612, 2004. 7
2004
-
[27]
Tune-a-video: One-shot tuning of image diffusion models for text-to-video generation
Jay Zhangjie Wu, Yixiao Ge, Xintao Wang, Stan Weixian Lei, Yuchao Gu, Yufei Shi, Wynne Hsu, Ying Shan, Xiaohu Qie, and Mike Zheng Shou. Tune-a-video: One-shot tuning of image diffusion models for text-to-video generation. In Proceedings of the IEEE/CVF International Conference...
2023
-
[28]
Smartbrush: Text and shape guided object inpainting with diffusion model
Shaoan Xie, Zhifei Zhang, Zhe Lin, Tobias Hinz, and Kun Zhang. Smartbrush: Text and shape guided object inpainting with diffusion model. In IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, CVPR 2023, Vancou- ver, BC, Canada, June 17-24, 2023 , pages 22428–2243...
2023
-
[29]
Price, Scott Cohen, and Thomas S
Ning Xu, Linjie Yang, Yuchen Fan, Jianchao Yang, Dingcheng Yue, Yuchen Liang, Brian L. Price, Scott Cohen, and Thomas S. Huang. Youtube-vos: Sequence-to-sequence video object segmentation. In ECCV, 2018. 3
2018
-
[30]
Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models
Hu Ye, Jun Zhang, Sibo Liu, Xiao Han, and Wei Yang. Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models. CoRR, abs/2308.06721, 2023. 3, 4
2023 arXiv
-
[31]
Flow-guided transformer for video inpainting
Kaidong Zhang, Jingjing Fu, and Dong Liu. Flow-guided transformer for video inpainting. In ECCV, 2022. 2, 3, 5
2022
-
[32]
Adding condi- tional control to text-to-image diffusion models
Lvmin Zhang and Maneesh Agrawala. Adding condi- tional control to text-to-image diffusion models. CoRR, abs/2302.05543, 2023. 3
2023 arXiv
-
[33]
Metaxas, and Licheng Yu
Zhixing Zhang, Bichen Wu, Xiaoyan Wang, Yaqiao Luo, Luxin Zhang, Yinan Zhao, Peter Vajda, Dimitris N. Metaxas, and Licheng Yu. A VID: any-length video inpainting with diffusion model. In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2024, Seattle, WA, US...
2024
-
[34]
Shangchen Zhou, Chongyi Li, Kelvin C. K. Chan, and Chen Change Loy. Propainter: Improving propagation and transformer for video inpainting. CoRR, abs/2309.03897,
-
[35]
A task is worth one word: Learning with task prompts for high-quality versatile image inpainting
Junhao Zhuang, Yanhong Zeng, Wenran Liu, Chun Yuan, and Kai Chen. A task is worth one word: Learning with task prompts for high-quality versatile image inpainting. CoRR, abs/2312.03594, 2023. 2, 3
2023 arXiv
-
[36]
Cococo: Improving text-guided video inpainting for bet- ter consistency, controllability and compatibility
Bojia Zi, Shihao Zhao, Xianbiao Qi, Jianan Wang, Yukai Shi, Qianyu Chen, Bin Liang, Kam-Fai Wong, and Lei Zhang. Cococo: Improving text-guided video inpainting for bet- ter consistency, controllability and compatibility. CoRR, abs/2403.12035, 2024. 2, 3, 6, 8
2024 arXiv
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.