REVIEW 4 major objections 6 minor 2 cited by
Walk Before You Run! Concise LLM Reasoning via Reinforcement Learning
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A two-stage reinforcement learning schedule that first trains reasoning ability and only then, when every sampled response in a group is correct, optimizes for shorter chain-of-thought produces more concise responses and beats zero-RL…
desk verdict Two-stage RL recipe with an all-correct-gated length reward is a sensible, concrete contribution, but the 'outperforms baselines' claim rests on unmatched evaluation protocols and no error bars. 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 object is the length-aware reward used in L-GRPO: for a group of $G$ responses to one question, the reshaped reward is $\hat r_i = r_i + \lambda \hat L_i$ with $\hat L_i = 1 - L_i/L_{\mathrm{Max}}$ when $\sum_i r_i = G$ (all rollouts correct) and $\hat L_i = 0$ otherwise. This keeps the standard binary accuracy reward for the group-relative advantage computation and adds a gentle pressure to finish within fewer tokens, but only after the group has already solved the problem. The 'walk before you run' gate is what distinguishes L-GRPO from naive length penalties: it prevents the policy from shortening responses by giving up on hard reasoning, the failure mode the paper documents in its ablation of direct length rewards. GRPO++ supplies the first-stage machinery—asymmetric clip-higher bounds, dynamic sampling, and an entropy bonus—that lets the model acquire the reasoning ability before compression begins.
What would settle it
Run ConciseR-Zero-7B and each zero-RL baseline in Table 3 through one identical evaluation script with the same 32-sample temperature-0.6 pass@1 protocol; if the average accuracy gap over Oat-Zero-7B (56.1 vs 50.4) closes or reverses, the central outperformance claim fails. Separately, retrain stage 2 with the length reward applied unconditionally; if accuracy falls, the all-correct gate is doing the work.
Extended reading notes
Core claim
The central claim is that concise reasoning can be trained without trading away accuracy. Starting from Qwen2.5-Math-7B, the paper first runs GRPO++ to incentivize correct problem solving, then switches to L-GRPO, which reshapes the group-relative reward to include a length term $\hat L_i = 1 - L_i/L_{\mathrm{Max}}$ only in groups where all rollouts are correct. This gating embodies the 'walk before you run' principle: the model is never rewarded for brevity until it has already achieved correctness on that example. On AIME 2024, MATH-500, AMC 2023, Minerva, and Olympiad, the resulting model averages 56.1% pass@1 (k=32), above the best zero-RL baseline's 50.4%, while response lengths fall roughly 20% to 23% across the five benchmarks. The paper also reports that the first stage alone already surpasses the zero-RL baselines, suggesting the compression stage adds efficiency on top of a stronger reasoning model.
Load-bearing premise
The central comparison assumes that the paper's pass@1 scores, computed with 32 sampled responses at temperature 0.6, are numerically comparable to baseline numbers in Table 3 that come from other papers using possibly different decoding protocols (greedy or different sample counts); if that comparability fails, the claim that ConciseR outperforms the baselines loses its support.
Editorial extensions
If this is right
- Under the paper's evaluation protocol, ConciseR-Zero-7B scores 56.1 average pass@1 across AIME 2024, MATH-500, AMC 2023, Minerva, and Olympiad, above the best zero-RL baseline's 50.4.
- Response lengths drop by about 20% to 23% across the five benchmarks after stage 2, while per-benchmark accuracy stays flat or improves.
- The all-correct gate prevents the length reward from making the model abandon reasoning: in the paper's ablations, direct length rewards caused empty reasoning and answer guessing.
- GRPO++ on its own already beats all zero-RL baselines, so the conciseness stage layers efficiency onto a model that has first been made stronger.
Reading between the lines
- The gating idea should transfer to other verifiable efficiency targets—e.g., fewer tool calls, lower latency, or shorter proofs—whenever a group of rollouts can be certified correct.
- The observed shift toward Python-based verification during stage 2 suggests that compression pressure may push models toward more reliable external checks; this is a pattern the paper displays, not a claim it establishes.
- Because the comparison mixes evaluation protocols, the compression effect (a within-paper, matched-protocol result) is more robust than the ranking claim; a matched-protocol rerun could plausibly preserve the length reduction but reorder the baselines.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ConciseR, a two-stage reinforcement learning framework for training math reasoning models (starting from Qwen2.5-Math-7B) to produce shorter chain-of-thought responses without sacrificing accuracy. The first stage trains reasoning ability via GRPO++ (GRPO with clip-higher, dynamic sampling, and an entropy bonus); the second stage applies L-GRPO, which adds a length reward that is active only when all sampled rollouts for a training question are correct. The authors report that ConciseR outperforms recent zero-RL reasoning models on AIME 2024, MATH-500, AMC 2023, Minerva, and OlympiadBench while reducing response length by roughly 20%.
Significance. If the claims hold, the work is practically valuable: a roughly 20% inference-cost reduction at approximately constant accuracy would meaningfully lower deployment costs for long-CoT reasoning models. The proposed gating heuristic ('walk before you run') is simple and interesting, and the paper honestly documents a failure mode of a direct length-reward variant. The significance is currently limited by the absence of same-protocol baseline comparisons and the lack of any uncertainty quantification, both of which are required to support the headline 'outperforms' claim.
major comments (4)
- [Sec. 4 'Evaluation Setup' and Table 3] The pass@1 numbers for ConciseR are computed with 32 samples at temperature 0.6, while the baseline numbers marked with a dagger are taken from Hochlehnert et al. [20] and were produced under heterogeneous decoding protocols (varying sample counts, temperatures, or greedy decoding). Pass@1 is sensitive to the sampling protocol, so the few-point gaps over Oat-Zero-7B (50.4 vs 56.1 average) do not by themselves establish that ConciseR outperforms these baselines. Please re-evaluate at least the strongest zero-RL baselines under the exact ConciseR protocol, or provide protocol-matched numbers from the original sources.
- [Sec. 4.1 and Figure 3] No error bars, confidence intervals, or multiple seeds are reported for any accuracy estimate. AIME 2024 has only 30 questions, so a 3-5 point difference can easily arise from sampling noise; the same concern applies to Minerva and OlympiadBench. The claim that accuracy remains stable across L-GRPO steps is not supported without quantifying the sampling variability. Please provide bootstrap confidence intervals for the pass@1 estimates or repeat the evaluation under additional random seeds.
- [Sec. 3.2 and Sec. 5.3] The all-correct gating condition is the paper's central design principle, but it is not ablated. The failure-experience experiments in Section 5.3 compare L-GRPO against two alternative length-reward formulations, but they do not test whether the gating on all-correct rollouts is necessary or superior to, for example, applying the length reward unconditionally or to groups with at least one correct answer. Without such an ablation, the claim that this gating is what preserves accuracy is unsupported.
- [Abstract and Sec. 4.1] The abstract states that ConciseR 'generates more concise CoT reasoning responses,' but no response-length numbers for any baseline model are reported. The length reductions of 21-23% cited in Section 4.1 are relative to ConciseR's own first-stage model. To substantiate the comparative conciseness claim, please report average output lengths for the baselines under the same evaluation protocol.
minor comments (6)
- [Sec. 4 'Evaluation Benchmarks'] The benchmark name 'OlympaidBench' should be spelled 'OlympiadBench'.
- [Sec. 4 'Evaluation Setup'] The sentence 'The used training template is shown in Figure 2' should refer to Table 2, which actually contains the template.
- [Sec. 5.1 and Figure captions] The text says 14,022 responses correspond to 1,558 questions times 11 test times, but 1,558 times 11 is 17,138; Figure 6 uses 15,580 for the same product. Please correct the arithmetic so the counts match.
- [Sec. 4.1] The claim of an 'average accuracy improvement of 55.2%' compared to the base model is unclear: Table 3 shows 37.5 to 56.1, which is a 49.6% relative improvement or an 18.6-point absolute gain. Please specify the formula used.
- [Sec. 7 Conclusion] The conclusion says ConciseR 'significantly outperforming existing efficient reasoning methods' without the zero-RL qualifier, which is too broad given that FastCuRL-1.5B-V3 and DeepScaleR-1.5B-Preview in Table 3 have higher or comparable averages. Please qualify the claim.
- [Eq. (8) vs. Eq. (6)] Equation (8) uses the constraint '0 < |{oi|is_equivalent(oi,a)}|' while Equation (6) uses '0 < ... < G'; please explain whether all-correct groups are intentionally included in L-GRPO updates and align the notation.
Circularity Check
No significant circularity: accuracy claims are externally benchmarked; only the length-reduction result is entailed by L-GRPO's own reward definition.
-
self definitional
[Section 3.2, Eq. (7); Section 4.1 (Main Results)]
"When the model's rollout results for a question are all correct, we further optimize the model's reasoning length for that question by using the remaining maximum response length as a reward (under the specified context length, the more remaining context length, the higher the reward) ... the average response length on each benchmark consistently decreases, with reductions of 21%, 22%, 20%, 22%, and 23% observed on AIME 2024, MATH-500, AMC 2023, Minerva, and Olympiad benchmarks, respectively."
In Eq. (7), for all-correct groups the auxiliary reward is L-hat_i = 1 - L_i / L_Max, so longer rollouts are assigned lower rewards and lower group-relative advantages. The 21-23% length reductions in Section 4.1 are therefore entailed by the reward definition; the paper is transparent that the second stage 'explicitly enforces conciseness.' This is a minor self-definitional observation, not a hidden prediction. It does not affect the accuracy claims, which are evaluated on external benchmarks and are not fitted inputs.
full rationale
The central derivation chain is otherwise self-contained: GRPO++ adopts DAPO's clip-higher and dynamic sampling with an added entropy bonus, and L-GRPO adds a length reward gated on all-correct groups. The 'walk before you run' accuracy-stability claim is empirical, not by construction. The authors' prior FastCuRL [11] is cited as a baseline and related work, but the head-to-head numbers are empirical and not used as a proof step; under the rules, this self-citation is not load-bearing and does not raise the score. The Eq. (7) length reward is the only by-construction element, and the score is low because the paper's headline accuracy comparison is externally grounded. The mixed-protocol pass@1 caveat in Table 3 is a benchmark-comparability risk, not a circularity. No uniqueness theorem, no ansatz smuggled via citation, and no renamed known result were found.
Assumptions & free parameters
free parameters (6)
- lambda (length reward weight) =
2e-6
- alpha (entropy bonus coefficient) =
0.001
- beta (KL penalty coefficient) =
0.01
- epsilon_h and epsilon_l (clip bounds) =
0.28 and 0.2
- L_max (max response length) =
3072 tokens
- Sampling temperature and top-p =
0.6 and 0.95
assumptions (4)
- domain assumption Correct CoT responses are statistically shorter than incorrect ones for the models under study
- ad hoc to paper Optimizing response length only when all rollouts for a sample are correct preserves accuracy
- domain assumption MATH Level 3-5 alone is a sufficient stage-2 training distribution to transfer conciseness to all five evaluation benchmarks
- domain assumption Math-Verify based rule reward correctly identifies answer equivalence
Cite this review
Pith. "Pith review of Walk Before You Run! Concise LLM Reasoning via Reinforcement Learning." pith.science (2026). https://pith.science/paper/JAQ7W3LZ
@misc{pith2026250521178,
author = {Pith},
title = {Pith review of: Walk Before You Run! Concise LLM Reasoning via Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/JAQ7W3LZ}},
note = {Machine review of arXiv:2505.21178}
}
read the original abstract
As test-time scaling becomes a pivotal research frontier in Large Language Models (LLMs) development, contemporary and advanced post-training methodologies increasingly focus on extending the generation length of long Chain-of-Thought (CoT) responses to enhance reasoning capabilities toward DeepSeek R1-like performance. However, recent studies reveal a persistent overthinking phenomenon in state-of-the-art reasoning models, manifesting as excessive redundancy or repetitive thinking patterns in long CoT responses. To address this issue, in this paper, we propose a simple yet effective two-stage reinforcement learning framework for achieving concise reasoning in LLMs, named ConciseR. Specifically, the first stage, using more training steps, aims to incentivize the model's reasoning capabilities via Group Relative Policy Optimization with clip-higher and dynamic sampling components (GRPO++), and the second stage, using fewer training steps, explicitly enforces conciseness and improves efficiency via Length-aware Group Relative Policy Optimization (L-GRPO). Significantly, ConciseR only optimizes response length once all rollouts of a sample are correct, following the "walk before you run" principle. Extensive experimental results demonstrate that our ConciseR model, which generates more concise CoT reasoning responses, outperforms recent state-of-the-art reasoning models with zero RL paradigm across AIME 2024, MATH-500, AMC 2023, Minerva, and Olympiad benchmarks.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 2 Pith papers
-
Token-Operations-Oriented Inference Optimization Techniques for Large Models
The paper introduces a four-layer technical architecture for token-operations-oriented inference optimization in large models and reviews key technologies and industry status at each layer.
-
Towards Concise and Adaptive Thinking in Large Reasoning Models: A Survey
A comprehensive review that categorizes methods for shortening and adaptively triggering chain-of-thought reasoning in large language models.
Reference graph
Works this paper leans on
-
[20]
A sober look at progress in language model reasoning: Pitfalls and paths to reproducibility, 2025
Andreas Hochlehnert, Hardik Bhatnagar, Vishaal Udandarao, Samuel Albanie, Ameya Prabhu, and Matthias Bethge. A sober look at progress in language model reasoning: Pitfalls and paths to reproducibility, 2025
work page 2025
-
[1]
Scaling llm test-time compute optimally can be more effective than scaling model parameters, 2024
Charlie Snell, Jaehoon Lee, Kelvin Xu, and Aviral Kumar. Scaling llm test-time compute optimally can be more effective than scaling model parameters, 2024
2024
-
[2]
Niklas Muennighoff, Zitong Yang, Weijia Shi, Xiang Lisa Li, Li Fei-Fei, Hannaneh Hajishirzi, Luke Zettlemoyer, Percy Liang, Emmanuel Candès, and Tatsunori Hashimoto. s1: Simple test-time scaling. arXiv preprint arXiv:2501.19393, 2025
arXiv 2025
-
[3]
Chi, Quoc V Le, and Denny Zhou
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, brian ichter, Fei Xia, Ed H. Chi, Quoc V Le, and Denny Zhou. Chain of thought prompting elicits reasoning in large language models. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors, Advances in Neural Information Processing Systems, 2022
2022
-
[4]
Aaron Jaech, Adam Kalai, Adam Lerer, Adam Richardson, Ahmed El-Kishky, Aiden Low, Alec Helyar, Aleksander Madry, Alex Beutel, Alex Carney, et al. Openai o1 system card. arXiv preprint arXiv:2412.16720, 2024
arXiv 2024
-
[5]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948, 2025
arXiv 2025
-
[6]
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, Y . K. Li, Y . Wu, and Daya Guo. Deepseekmath: Pushing the limits of mathematical reasoning in open language models, 2024
2024
-
[7]
Demystifying long chain-of-thought reasoning in llms, 2025
Edward Yeo, Yuxuan Tong, Morry Niu, Graham Neubig, and Xiang Yue. Demystifying long chain-of-thought reasoning in llms, 2025
2025
Show all 29 references
-
[8]
Tang, Manan Roongta, Colin Cai, Jeffrey Luo, Tianjun Zhang, Li Erran Li, Raluca Ada Popa, and Ion Stoica
Michael Luo, Sijun Tan, Justin Wong, Xiaoxiang Shi, William Y . Tang, Manan Roongta, Colin Cai, Jeffrey Luo, Tianjun Zhang, Li Erran Li, Raluca Ada Popa, and Ion Stoica. Deep- scaler: Surpassing o1-preview with a 1.5b model by scaling rl. https://github.com/ agentica-project/d...
2025
-
[9]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, et al. Kimi k1. 5: Scaling reinforcement learning with llms. arXiv preprint arXiv:2501.12599, 2025
2025 arXiv
-
[10]
Gonzalez
Alejandro Cuadron, Dacheng Li, Wenjie Ma, Xingyao Wang, Yichuan Wang, Siyuan Zhuang, Shu Liu, Luis Gaspar Schroeder, Tian Xia, Huanzhi Mao, Nicholas Thumiger, Aditya Desai, Ion Stoica, Ana Klimovic, Graham Neubig, and Joseph E. Gonzalez. The danger of overthinking: Examining t...
2025
-
[11]
Fastcurl: Curriculum reinforcement learning with progressive context extension for efficient training r1-like reasoning models, 2025
Mingyang Song, Mao Zheng, Zheng Li, Wenjie Yang, Xuan Luo, Yue Pan, and Feng Zhang. Fastcurl: Curriculum reinforcement learning with progressive context extension for efficient training r1-like reasoning models, 2025
2025
-
[12]
Dapo: An open-source llm reinforcement learning system at scale, 2025
Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Tiantian Fan, Gaohong Liu, Lingjun Liu, Xin Liu, Haibin Lin, Zhiqi Lin, Bole Ma, Guangming Sheng, Yuxuan Tong, Chi Zhang, Mofan Zhang, Wang Zhang, Hang Zhu, Jinhua Zhu, Jiaze Chen, Jiangjie Chen, Chengyi Wa...
2025
-
[13]
Understanding r1-zero-like training: A critical perspective
Zichen Liu, Changyu Chen, Wenjun Li, Penghui Qi, Tianyu Pang, Chao Du, Wee Sun Lee, and Min Lin. Understanding r1-zero-like training: A critical perspective. arXiv preprint arXiv:2503.20783, 2025
2025 arXiv
-
[14]
Concise reasoning via reinforcement learning
Mehdi Fatemi, Banafsheh Rafiee, Mingjie Tang, and Kartik Talamadupula. Concise reasoning via reinforcement learning. arXiv preprint arXiv:2504.05185, 2025
2025
-
[15]
Proximal policy optimization algorithms
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017
2017 arXiv
-
[16]
Measuring mathematical problem solving with the math dataset
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset. arXiv preprint arXiv:2103.03874, 2021. 11
2021 arXiv
-
[17]
Solving quantitative reasoning problems with language models
Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman-Solo, et al. Solving quantitative reasoning problems with language models. Advances in Neural Information Processing Systems, 35...
2022
-
[18]
Omni-math: A universal olympiad level mathematic benchmark for large language models
Bofei Gao, Feifan Song, Zhe Yang, Zefan Cai, Yibo Miao, Qingxiu Dong, Lei Li, Chenghao Ma, Liang Chen, Runxin Xu, Zhengyang Tang, Benyou Wang, Daoguang Zan, Shanghaoran Quan, Ge Zhang, Lei Sha, Yichang Zhang, Xuancheng Ren, Tianyu Liu, and Baobao Chang. Omni-math: A universal ...
-
[19]
Imitate, explore, and self-improve: A reproduction report on slow-thinking reasoning systems, 2024
Yingqian Min, Zhipeng Chen, Jinhao Jiang, Jie Chen, Jia Deng, Yiwen Hu, Yiru Tang, Jiapeng Wang, Xiaoxue Cheng, Huatong Song, Wayne Xin Zhao, Zheng Liu, Zhongyuan Wang, and Ji-Rong Wen. Imitate, explore, and self-improve: A reproduction report on slow-thinking reasoning systems, 2024
2024
-
[21]
Qwen2.5 technical report.arXiv preprint arXiv:2412.15115, 2024
An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, Huan Lin, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Yang, Jiaxi Yang, Jingren Zhou, Junyang Lin, Kai Dang, Keming Lu, Keqin Bao, Kexin Yang, Le Yu, Me...
2024 arXiv
-
[22]
Qwen2.5-math technical report: Toward mathematical expert model via self-improvement, 2024
An Yang, Beichen Zhang, Binyuan Hui, Bofei Gao, Bowen Yu, Chengpeng Li, Dayiheng Liu, Jianhong Tu, Jingren Zhou, Junyang Lin, Keming Lu, Mingfeng Xue, Runji Lin, Tianyu Liu, Xingzhang Ren, and Zhenru Zhang. Qwen2.5-math technical report: Toward mathematical expert model via se...
2024
-
[23]
Process reinforcement through implicit rewards
Ganqu Cui, Lifan Yuan, Zefan Wang, Hanbin Wang, Wendi Li, Bingxiang He, Yuchen Fan, Tianyu Yu, Qixin Xu, Weize Chen, et al. Process reinforcement through implicit rewards. arXiv preprint arXiv:2502.01456, 2025
2025 arXiv
-
[24]
Open-reasoner-zero: An open source approach to scaling up reinforcement learning on the base model, 2025
Jingcheng Hu, Yinmin Zhang, Qi Han, Daxin Jiang, Xiangyu Zhang, and Heung-Yeung Shum. Open-reasoner-zero: An open source approach to scaling up reinforcement learning on the base model, 2025
2025
-
[25]
Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild, 2025
Weihao Zeng, Yuzhen Huang, Qian Liu, Wei Liu, Keqing He, Zejun Ma, and Junxian He. Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild, 2025
2025
-
[26]
Hybridflow: A flexible and efficient rlhf framework
Guangming Sheng, Chi Zhang, Zilingfeng Ye, Xibin Wu, Wang Zhang, Ru Zhang, Yanghua Peng, Haibin Lin, and Chuan Wu. Hybridflow: A flexible and efficient rlhf framework. In Proceedings of the Twentieth European Conference on Computer Systems, page 1279–1297. ACM, March 2025
2025
-
[27]
Olympiadbench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scientific problems
Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, et al. Olympiadbench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scientific problems. In Proceedings of the 62nd Annu...
2024
-
[28]
Open r1: A fully open reproduction of deepseek-r1, January 2025
Hugging Face. Open r1: A fully open reproduction of deepseek-r1, January 2025
2025
-
[29]
Light-r1: Curriculum sft, dpo and rl for long cot from scratch and beyond
Liang Wen, Yunke Cai, Fenrui Xiao, Xin He, Qi An, Zhenyu Duan, Yimin Du, Junchen Liu, Lifu Tang, Xiaowei Lv, et al. Light-r1: Curriculum sft, dpo and rl for long cot from scratch and beyond. arXiv preprint arXiv:2503.10460, 2025. 12
2025 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.