Pith. sign in

REVIEW 4 major objections 4 minor 17 references

Long-context reasoning models copy prompts instead of reasoning; a grounding reward that rewards key evidence and penalizes distractors improves accuracy and token efficiency.

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · deepseek-v4-flash

2026-08-01 12:41 UTC pith:EBBXJUN2

load-bearing objection A solid diagnosis and a plausible but not fully isolated intervention; worth reviewing, but ask for seeds and a length-matched control. the 4 major comments →

arxiv 2607.19345 v1 pith:EBBXJUN2 submitted 2026-07-21 cs.CL cs.AI

Copy Less, Ground More: Overcoming Repetitive Copying in Long-Context Reasoning via Evidence-Aware Reinforcement Learning

classification cs.CL cs.AI
keywords repetitive copyinglong-context reasoningevidence groundingreward shapingreinforcement learningn-gram overlapdistractor penaltythinking length
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper claims that 'repetitive copying' — models transcribing large passages from a long input into their thinking traces — is a distinct failure mode that grows with context length and hurts accuracy. It diagnoses the root cause as insufficient grounding: models copy indiscriminately rather than selectively from task-relevant evidence. To fix it, the authors add two reward terms to standard accuracy-based reinforcement learning: a small reward for n-gram overlap with key evidence and a larger penalty for overlap with irrelevant distractor context. Across three model scales and five held-out long-context benchmarks, this reward shaping improves average accuracy by up to +4.6 points, with larger gains at 128k contexts, while reducing copying and thinking length. The result suggests that grounding in relevant evidence is a trainable capability, not a fixed property of the model.

Core claim

The central claim is that the failure of long-context reasoning models is not copying per se but indiscriminate copying, and that this follows from weak evidence grounding. On a procedurally generated long-context arithmetic benchmark, the authors show that correctly answered samples have significantly higher overlap with key evidence and lower overlap with distractor content than incorrect ones, and that beyond an overlap threshold accuracy collapses while thinking length triples. They then propose GEAR (Grounding Evidence-Aware Reward), which adds α·Overlap_n(y∥x_key) − β·Overlap_n(y∥x_dist) to the accuracy reward, with α=0.1, β=0.3, n=3. Trained on 3,200 evidence-annotated problems spanni

What carries the argument

The central object is the GEAR reward (Eq. 3): an accuracy signal augmented by n-gram overlap with key evidence minus n-gram overlap with distractor context. This turns a binary verifiable reward into a dense, evidence-grounded reward computable from support annotations. A three-stage automated pipeline — analyze document, generate a question constrained to a sampled evidence region, verify by re-answering from that region only — is what makes the reward available for natural-language data.

Load-bearing premise

The causal story stands on the assumption that n-gram overlap between the reasoning trace and annotated evidence spans is a valid and sufficient proxy for 'grounding' — that rewarding overlap with key evidence and penalizing overlap with distractors is what drives the accuracy gains, rather than a generic verbosity or regularization effect.

What would settle it

A direct test: train the same models with a reward that penalizes all repeated n-grams in the trace (including self-repetition) but ignores evidence annotations, or that penalizes copying alone without any grounding reward. If that matches or beats GEAR's accuracy, the evidence-grounding mechanism would be falsified. Similarly, if GEAR-trained models are evaluated on a task where the key evidence is deliberately placed in the distractor region (i.e., mislabeled annotations) and accuracy does not drop, the reward is not actually teaching selective grounding.

Watch this falsifier — get emailed when new claim-graph text bears on it.

If this is right

  • If the central claim is right, accuracy-only RL on long contexts leaves a trainable performance margin on the table; evidence-aware reward shaping captures it.
  • The larger gains at 128k (4× the training context) imply that the grounding behavior learned at moderate length transfers to much longer inputs.
  • Reducing repetitive copying and thinking length simultaneously means accuracy gains do not come at the cost of token efficiency; in fact, efficiency improves.
  • The ablation result that grounding alone hurts performance cautions that encouraging evidence use without discouraging irrelevant copying backfires, informing future reward design.
  • The method needs no external verifier or retrieval module; n-gram statistics over annotated evidence suffice.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same n-gram reward logic could be extended to other trace-level pathologies, such as self-repetition loops, by penalizing overlap with the model's own previous tokens; the paper observes 'Wait' cycles but never rewards against them.
  • The evidence-grounding diagnosis suggests a test for other long-context failure modes: if a model's errors do not correlate with distractor overlap, a different intervention (e.g., memory or retrieval) may be needed.
  • Reversing the annotation workflow — picking the evidence region first and constraining question generation to it — is a reusable data-generation trick beyond RL reward shaping.
  • The recipe's balance (small α, larger β) may be specific to this setup; whether aggressive distractor suppression transfers to other task families is an open empirical question.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit.

Referee Report

4 major / 4 minor

Summary. This paper studies long-context reasoning LLMs and identifies 'repetitive copying'—excessive n-gram overlap between the model's reasoning trace and the input prompt—as a failure mode that grows with context length and correlates with lower accuracy. Using GSM-Infinite's support annotations, the authors define a grounding ratio r = Overlap_10(y‖x_key)/Overlap_10(y‖x_dist) and show that correctly answered samples are more selective. They propose GEAR, which augments a binary accuracy reward with α·Overlap_n(y‖x_key) − β·Overlap_n(y‖x_dist) (Eq. 3), and an automated pipeline that creates evidence-annotated QA pairs from arbitrary documents. Training Qwen3.5-9B, 27B, and 35B-A3B with GSPO on 3.2k samples, they report consistent average gains over accuracy-only GSPO across five held-out benchmarks at 32k and 128k contexts (up to +4.6 at 128k), with reduced 3-gram overlap and thinking length. The central claim is that evidence-aware reward shaping is the active ingredient behind these gains.

Significance. If the main results hold, this is a useful contribution: a simple reward-shaping method that consistently outperforms accuracy-only RL on long-context reasoning benchmarks, with gains that generalize to 4× the training context length, plus a diagnostic linking copying behavior to evidence selectivity. The arithmetic in Table 1 is internally consistent, the evaluation benchmarks are disjoint from the training data, and the 128k results are not used for hyperparameter selection, which makes the core empirical claim reasonably credible. The proposed method is straightforward to reproduce. However, the evidence that the accuracy gains come specifically from improved evidence grounding, rather than from a generic verbosity/regularization effect, is incomplete. The paper lacks a control that isolates the key/distractor distinction, and the mechanism claims in §5.2 and Appendix A.3.2 are partly unsupported. These gaps prevent the paper from being fully convincing in its current form.

major comments (4)
  1. [§5.2, Table 2, Eq. (3)] The causal mechanism is not isolated from generic verbosity reduction. Table 2 reports only total 3-gram overlap with the whole prompt and thinking length; it does not report post-training key vs. distractor overlap or the grounding ratio r from Eq. (2). Since the distractor penalty β·Overlap(y‖x_dist) is itself an overlap/length penalty, the observed reductions in thinking length and copying could by themselves explain the accuracy gains via regularization. A control that matches GEAR's thinking-length reduction—e.g., a token-length penalty or a uniform overlap penalty without a key/distractor split—is needed to show that the evidence-aware split is the active ingredient. The α=0, β=0.3 row in Table 3 is not an adequate control because it changes the reward scale and suppresses all prompt copying, not just distractor copying.
  2. [Table 1; Tables 3–4] All RL results are from single runs with no variance estimates. The reported improvements include small effects (e.g., +1.5 points at 32k for Qwen3.5-27B), and the claim of 'consistent gains' across six model–context combinations is load-bearing for the quantitative headline. Without at least three seeds with mean±std, or some other variance evidence, it is unclear whether the smaller gains are within RL training noise.
  3. [§4.3, Tables 3–4, Table 1] The hyperparameters n=3, α=0.1, β=0.3 are selected by ablations on the same 32k evaluation benchmarks (Ruler, LongBench-v2, BrowseComp-LC, GraphWalks) that appear in Table 1. The 32k gains are therefore partly a product of tuning on the test set and may be optimistic. The 128k results are less affected, but the paper should either select hyperparameters on a separate validation split or explicitly acknowledge and re-analyze the 32k numbers as post-selection.
  4. [Appendix A.3.2; §5.2, Eq. (3)] The case study in A.3.2 attributes GEAR's reduction of self-generated 'Wait' cycles to the distractor penalty, but this penalty in Eq. (3) only fires on n-grams that appear in the prompt (x_dist). Self-generated repetitions of the model's own tokens are not directly penalized. If the intended claim is an indirect behavioral effect, that needs explicit support; as written, this is an internal inconsistency in the mechanism story.
minor comments (4)
  1. [Eq. (2)] The grounding ratio r is undefined when the denominator Overlap_10(y‖x_dist) is zero. Please specify a convention for such cases (e.g., set r to a large constant or exclude those samples), as this affects the distributions in Figures 3 and 5.
  2. [§5.1] The sentence 'Conversely, Table 3 we demonstrate that training with only the distractor penalty...' is grammatically malformed and should be rephrased.
  3. [§5.1, Table 1] The '32k subset' is not precisely defined. It would help to state whether samples with contexts longer than 32k are filtered out or truncated, and how the per-benchmark subset sizes compare across Ruler, LongBench-v2, BrowseComp-LC, and GraphWalks.
  4. [Table 3] The α=0, β=0.3 row reports an average of 72.0, which is 6.5 points below the accuracy-only GSPO baseline (78.5). The text says only that this is 'worse than the baseline'; the magnitude is striking and deserves a sentence of interpretation.

Circularity Check

1 steps flagged

Main accuracy claims are held-out and independent; the mechanism confirmation in §5.2 re-measures the shaped reward's own overlap terms, making the grounding explanation partially circular.

specific steps
  1. self definitional [§5.2, Table 2; Eq. 1 and Eq. 3]
    "The main results demonstrate that GEAR improves task accuracy, but do these gains stem from the intended mechanism, i.e., reducing indiscriminate copying and improving evidence grounding? Table 2 reports answer-input overlap (token-level 3-gram) and thinking length ... Only when the distractor penalty Rdist is added does the overlap drop below all other configurations: 27.0% on Ruler and 22.6% on LongBench-v2."

    The overlap rate reported in Table 2 is the same n-gram overlap statistic from Eq. 1 that the GEAR reward in Eq. 3 directly optimizes: +α·Overlap_n(y||x_key) − β·Overlap_n(y||x_dist). Because the distractor component is most of the prompt, total prompt overlap is largely the quantity being penalized. Thus the observation that GEAR 'reduces repetitive copying' is a direct consequence of the training objective, not an independent confirmation that selective grounding is the causal driver of the accuracy gains. The mechanism claim reduces to showing the model optimized its shaped reward; key/distractor overlaps (the actual grounding ratio, Eq. 2) are not reported for trained models.

full rationale

The central accuracy finding is not circular: Table 1 evaluates GEAR on held-out benchmarks with a binary accuracy signal that is distinct from the shaped training reward, and the gains at 128k from 16k-32k training are not forced by the reward definition. No load-bearing self-citation is used; the Fang et al. reference is only related work. The circularity is confined to §5.2's mechanism confirmation, where the behavioral metric (n-gram overlap with the prompt) is essentially the objective Eq. 3 optimizes. The thinking-length reduction is partly emergent (no explicit length penalty), so not all of the evidence is definitional. Score 4 reflects partial circularity in the mechanism story while the headline result stands independently.

Axiom & Free-Parameter Ledger

5 free parameters · 5 axioms · 0 invented entities

GEAR introduces no new physical or model entities; it is a shaped reward. The load-bearing inputs are two hand-set coefficients (α=0.1, β=0.3) and the n-gram size (n=3), all tuned on the 32k evaluation suite, plus the assumption that n-gram overlap is a faithful grounding proxy. The central accuracy claims rest on held-out benchmark numbers without error bars, contamination analysis, or released code.

free parameters (5)
  • α (grounding reward weight) = 0.1
    Chosen via ablation on the 32k evaluation suite (Table 3); α=0.3 degrades the average from 81.3 to 78.6, so the value is tuned to the eval set.
  • β (distractor penalty weight) = 0.3
    Chosen via ablation (Table 3); β=0.1 drops the average to 78.4 and β=0.5 to 80.5. The β>α asymmetry is load-bearing.
  • n-gram size n for training = 3
    Selected via ablation (Table 4); n=5 and n=10 give 80.0 and 79.8 vs 81.3 for n=3, chosen on the 32k eval set.
  • Training mixture composition (1k GSM-Infinite, 1k PhantomWiki, 1.2k RedPajama-v2) = 3/8, 3/8, 1/4 of 3,200
    Hand-chosen composition; no ablation on the data mix is reported.
  • Pipeline chunk size and evidence count (1,024 chars, 1–3 chunks) = 1,024 chars; 1–3 chunks
    Design choices in the §4.2 pipeline, not ablated.
axioms (5)
  • domain assumption n-gram overlap between the reasoning trace and prompt spans is a valid proxy for evidence grounding
    Eq. 1/3: the entire reward and all mechanism checks reduce to n-gram match rates. No human study or independent grounding metric validates the proxy.
  • domain assumption GSM-Infinite support indices and op-counts faithfully separate key evidence from distractors and capture task difficulty
    §3.1, §3.4, Appendix A.4: the diagnosis and confound analysis rely on the procedural generator's annotations being correct.
  • domain assumption The observed correlation between grounding ratio and correctness is causal and actionable via reward shaping
    §3.4 → §4: the method is motivated by a distributional difference between correct and wrong samples; the RL results are the only causal evidence.
  • domain assumption Single-run RL results without seed variance are stable enough to rank configurations
    §5.1: differences as small as +1.5 points (27B at 32k) and ~1-point ablation gaps are reported without error bars.
  • domain assumption No significant topic leakage between RedPajama-v2 training documents and web-derived eval benchmarks (LongBench-v2, BrowseComp-LC)
    §4.2/§5.1: no contamination analysis is provided.

pith-pipeline@v1.3.0-alltime-deepseek · 15621 in / 20439 out tokens · 183608 ms · 2026-08-01T12:41:36.617241+00:00 · methodology

0 comments
read the original abstract

Large language models that generate step-by-step reasoning traces have achieved strong performance on complex tasks, and extending them to long-context settings has emerged as an important frontier. However, we identify a critical failure mode in this regime: \emph{repetitive copying}, where models extensively copy text from the input into their reasoning traces rather than productively solving the problem. We show that this behavior is pervasive across frontier long-context LLMs and intensifies with context length. By separating each prompt into task-relevant key evidence and irrelevant distractor context, we further show that the root cause is insufficient grounding: models copy from the prompt indiscriminately, and those that fail to focus on key evidence are far more likely to answer incorrectly. Motivated by this diagnosis, we propose GEAR (Grounding Evidence-Aware Reward), a reward shaping method that augments the accuracy signal with a grounding reward for overlap with key evidence and a distractor penalty for overlap with irrelevant context. To enable GEAR on natural-language data, we develop an automated pipeline that constructs evidence-annotated training data from arbitrary documents. We validate GEAR across multiple model scales and benchmarks, showing consistent improvements of up to +4.6 average points over standard RL with accuracy-based rewards, with larger gains at longer contexts, while also reducing repetitive copying and thinking length. Our findings suggest that, even as long-context evaluation shifts from simple retrieval toward complex reasoning, accurate grounding in relevant evidence remains an indispensable capability with substantial room for improvement.

Figures

Figures reproduced from arXiv: 2607.19345 by Lizhe Fang, Tianyi Tang, Weizhou Shen, Yisen Wang.

Figure 1
Figure 1. Figure 1: n-gram overlap rate on GSM-Infinite as a function of context length across seven models. All models copy more as context grows, and the high 10-gram overlap confirms that copied spans are long contiguous passages. are known exactly, enabling precise measurement of what the model copies, i.e., whether it targets task-relevant evidence or merely reproduces filler text. We construct datasets at context scales… view at source ↗
Figure 2
Figure 2. Figure 2: Repetitive copying harms both accuracy and reasoning efficiency (DeepSeek-V3.2 on [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Figure 3: Copying behavior of correctly vs. incorrectly answered samples (DeepSeek-V3.2 on [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figure 4
Figure 4. Figure 4: Accuracy and thinking length by 10-gram overlap rate bin across six models on GSM [PITH_FULL_IMAGE:figures/full_fig_p013_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Probability density of grounding ratio ( [PITH_FULL_IMAGE:figures/full_fig_p014_5.png] view at source ↗
Figure 6
Figure 6. Figure 6: Base model: the thinking trace is dominated by repetitive copying of the input, consuming [PITH_FULL_IMAGE:figures/full_fig_p014_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: GSPO model: avoids repetitive input copying but enters a degenerate repetition loop, [PITH_FULL_IMAGE:figures/full_fig_p015_7.png] view at source ↗
Figure 8
Figure 8. Figure 8: GEAR model: describes a procedural strategy, reasons about word frequencies without [PITH_FULL_IMAGE:figures/full_fig_p015_8.png] view at source ↗
Figure 9
Figure 9. Figure 9: Base model on LongBench-v2 Academic/32k: the model identifies the correct answer early [PITH_FULL_IMAGE:figures/full_fig_p016_9.png] view at source ↗
Figure 10
Figure 10. Figure 10: GSPO model on the same sample: reaches the correct answer but still exhibits moderate [PITH_FULL_IMAGE:figures/full_fig_p016_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: GEAR model on the same sample: systematic analysis of each choice, identifies C as [PITH_FULL_IMAGE:figures/full_fig_p016_11.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

17 extracted references · 13 linked inside Pith

  1. [3]

    Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948,

    Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Peiyi Wang, Qihao Zhu, Runxin Xu, Ruoyu Zhang, Shirong Ma, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948,

  2. [4]

    Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,

    Cheng-Ping Hsieh, Simeng Sun, Samuel Kriman, Shantanu Acharya, Dima Rekesh, Fei Jia, Yang Zhang, and Boris Ginsburg. Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,

  3. [6]

    Golongrl: Capability-oriented long context reinforcement learning with multitask alignment.arXiv preprint arXiv:2605.19577,

    Minxuan Lv, Tiehua Mei, Tanlong Du, Junmin Chen, Zhenpeng Su, Ziyang Chen, Ziqi Wang, Zhennan Wu, Ruotong Pan, Ruiming Tang, et al. Golongrl: Capability-oriented long context reinforcement learning with multitask alignment.arXiv preprint arXiv:2605.19577,

  4. [7]

    Repetitions are not all alike: distinct mechanisms sustain repetition in language models.arXiv preprint arXiv:2504.01100,

    Matéo Mahaut and Francesca Franzon. Repetitions are not all alike: distinct mechanisms sustain repetition in language models.arXiv preprint arXiv:2504.01100,

  5. [8]

    Longr: Unleashing long-context reasoning via reinforcement learning with dense utility rewards.arXiv preprint arXiv:2602.05758,

    Bowen Ping, Zijun Chen, Yiyao Yu, Tingfeng Hui, Junchi Yan, and Baobao Chang. Longr: Unleashing long-context reasoning via reinforcement learning with dense utility rewards.arXiv preprint arXiv:2602.05758,

  6. [9]

    Deepseekmath: Pushing the limits of mathemat- ical reasoning in open language models.arXiv preprint arXiv:2402.03300,

    Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Yang Wu, et al. Deepseekmath: Pushing the limits of mathemat- ical reasoning in open language models.arXiv preprint arXiv:2402.03300,

  7. [11]

    Fanqi Wan, Weizhou Shen, Shengyi Liao, Yingcheng Shi, Chenliang Li, Ziyi Yang, Ji Zhang, Fei Huang, Jingren Zhou, and Ming Yan

    URL https://qwenlm.github.io/blog/qwq-32b/. Fanqi Wan, Weizhou Shen, Shengyi Liao, Yingcheng Shi, Chenliang Li, Ziyi Yang, Ji Zhang, Fei Huang, Jingren Zhou, and Ming Yan. Qwenlong-l1: Towards long-context large reasoning models with reinforcement learning.arXiv preprint arXiv:2505.17667,

  8. [12]

    Loongrl: Reinforcement learning for advanced reasoning over long contexts.arXiv preprint arXiv:2510.19363,

    Siyuan Wang, Gaokai Zhang, Li Lyna Zhang, Ning Shang, Fan Yang, Dongyao Chen, and Mao Yang. Loongrl: Reinforcement learning for advanced reasoning over long contexts.arXiv preprint arXiv:2510.19363,

  9. [13]

    Browsecomp: A simple yet challenging benchmark for browsing agents.arXiv preprint arXiv:2504.12516,

    Jason Wei, Zhiqing Sun, Spencer Papay, Scott McKinney, Jeffrey Han, Isa Fulford, Hyung Won Chung, Alex Tachard Passos, William Fedus, and Amelia Glaese. Browsecomp: A simple yet challenging benchmark for browsing agents.arXiv preprint arXiv:2504.12516,

  10. [14]

    When more is less: Understanding chain-of-thought length in llms.arXiv preprint arXiv:2502.07266,

    Yuyang Wu, Yifei Wang, Ziyu Ye, Tianqi Du, Stefanie Jegelka, and Yisen Wang. When more is less: Understanding chain-of-thought length in llms.arXiv preprint arXiv:2502.07266,

  11. [15]

    Qwen3 technical report.arXiv preprint arXiv:2505.09388,

    An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, et al. Qwen3 technical report.arXiv preprint arXiv:2505.09388,

  12. [16]

    Dapo: An open-source llm reinforcement learning system at scale

    Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Weinan Dai, Tiantian Fan, Gaohong Liu, Lingjun Liu, et al. Dapo: An open-source llm reinforcement learning system at scale. InNeurIPS, 2025a. Tianyu Yu, Bo Ji, Shouli Wang, Shu Yao, Zefan Wang, Ganqu Cui, Lifan Yuan, Ning Ding, Yuan Yao, Zhiyuan Liu, et al. Rlpr: Extrapolating rlvr to ...

  13. [17]

    Gsm-infinite: How do your llms behave over infinitely increasing context length and reasoning complexity?arXiv preprint arXiv:2502.05252,

    Yang Zhou, Hongyi Liu, Zhuoming Chen, Yuandong Tian, and Beidi Chen. Gsm-infinite: How do your llms behave over infinitely increasing context length and reasoning complexity?arXiv preprint arXiv:2502.05252,

  14. [2023]

    Deepseek-v3

    Aixin Liu, Aoxue Mei, Bangcai Lin, Bing Xue, Bingxuan Wang, Bingzheng Xu, Bochao Wu, Bowei Zhang, Chaofan Lin, Chen Dong, et al. Deepseek-v3. 2: Pushing the frontier of open large language models.arXiv preprint arXiv:2512.02556,

  15. [2024]

    Qwenlong-l1

    Weizhou Shen, Ziyi Yang, Chenliang Li, Zhiyuan Lu, Miao Peng, Huashan Sun, Yingcheng Shi, Shengyi Liao, Shaopeng Lai, Bo Zhang, et al. Qwenlong-l1. 5: Post-training recipe for long-context reasoning and memory management.arXiv preprint arXiv:2512.12967,

  16. [2025]

    Chatglm: A family of large language models from glm-130b to glm-4 all tools.arXiv preprint arXiv:2406.12793,

    Team Glm, Aohan Zeng, Bin Xu, Bowen Wang, Chenhui Zhang, Da Yin, Dan Zhang, Diego Rojas, Guanyu Feng, Hanlin Zhao, et al. Chatglm: A family of large language models from glm-130b to glm-4 all tools.arXiv preprint arXiv:2406.12793,

  17. [2026]

    Do not think that much for 2+ 3=? on the overthinking of o1-like llms.arXiv preprint arXiv:2412.21187,

    Xingyu Chen, Jiahao Xu, Tian Liang, Zhiwei He, Jianhui Pang, Dian Yu, Linfeng Song, Qiuzhi Liu, Mengfei Zhou, Zhuosheng Zhang, et al. Do not think that much for 2+ 3=? on the overthinking of o1-like llms.arXiv preprint arXiv:2412.21187,