Pith. sign in

REVIEW 3 major objections 6 minor 8 cited by

Pangu Embedded: An Efficient Dual-system LLM Reasoner with Metacognition

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper claims that a single 7-billion-parameter model can switch between fast and slow reasoning and beat similar-size rivals at both, using a two-stage distillation-plus-RL training framework.

desk verdict Serious engineering report, but the AIME 2024 result is tuned, and the headline gaps are within sampling noise under the paper's own rule; needs a serious referee and major revision before the outperformance claim is credible. read the letter →

arxiv 2505.22375 v2 pith:QFTSVFZB submitted 2025-05-28 cs.CL

classification cs.CL
keywords PanguEmbeddeddual-systemreasoningfastandslowthinkingadaptivemodeselectioniterativedistillationreinforcementlearningrewardsystemAscendNPU
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

The paper sets out to show that a single 7-billion-parameter model can behave as both a fast, low-latency answerer and a slow, deliberative reasoner, and that it can outperform similarly sized rivals in both roles. It reports that Pangu Embedded's slow 'thinking' mode scores 81.9 on AIME 2024, 68.0 on GPQA Diamond, and 67.1 on LiveCodeBench, ahead of Qwen3-8B and GLM-4-9B, while its fast mode stays competitive and an automatic, complexity-aware mode selector acts as a lightweight metacognitive controller that cuts output tokens sharply on easy problems. The construction is a two-stage pipeline: iterative distillation with inter-iteration model merging and reinforcement learning build a strong base reasoner, then 'fusion training' teaches the same weights to emit either a direct answer or a chain-of-thought, on user command or by self-assessed complexity. If the results hold, strong reasoning would not require a giant model or a long thinking chain for every query.

What carries the argument

The load-bearing object is the dual-system training dataset and the fusion-training curriculum built on it: roughly 300K fast-mode and 300K slow-mode samples, where easy queries are paired with concise answers and hard queries with <think>...</think> chains, and where training starts from the already capable slow reasoner and replays slow data while adding fast data. The model learns to emit or omit the thinking block, which makes the mode switch observable and lets a meta-prompt or natural-language instruction select the behaviour at inference time. Supporting machinery includes the model-aware complexity score $C(x,y;G_{t-1})=1-\frac{1}{k}\sum_i I(\mathrm{Eq}(y_i,y))$ that selects distillation data, the inter-iteration merging rule $\Theta^t_{\mathrm{merged}}=\Theta^{t-1}_{\mathrm{merged}}+\lambda_t\bar{\delta}^t$, and the Multi-source Adaptive Reward System (MARS) with rule-based and LLM-based verifiers.

What would settle it

Rerun the Table 2 comparison under one fixed protocol: identical prompts, identical decoding settings (including sampling temperature and top-p), identical few-shot counts, and at least 500 effective samples per benchmark, for Pangu Embedded and for Qwen3-8B and GLM-4-9B in both modes. If the rival models reproduce or exceed 81.9, 68.0, and 67.1 under those matched conditions, the claimed lead would be a measurement artifact rather than a model property.

Watch

Extended reading notes

Core claim

Pangu Embedded is a 7-billion-parameter reasoner whose central claim is that one set of weights can deliver both System 1 and System 2 behaviour without sacrificing either. In slow mode the authors report 81.9 on AIME 2024, 68.0 on GPQA Diamond, and 67.1 on LiveCodeBench, edging out Qwen3-8B (79.4, 62.0, 61.8) and GLM-4-9B (76.4, 58.5, 51.8); in fast mode the model remains competitive, and an adaptive variant holds accuracy nearly constant on GSM8K while reducing average output tokens from 2,721 to 325. The mechanism is a two-stage training framework: model-aware iterative distillation with inter-iteration checkpoint merging followed by GRPO reinforcement learning under a Multi-source Adaptive Reward System (MARS), and then a fusion-training stage that replays mastered slow-thinking data while introducing fast-thinking exemplars, so the presence or absence of the <think>...</think> block becomes the model's learned switch between cognitive modes.

Load-bearing premise

The load-bearing premise is that the comparison numbers for Qwen3-8B and GLM-4-9B were measured under equally favorable, comparable settings; some baseline cells in Table 2 come from the authors' own internal evaluation rather than the rivals' official reports.

Editorial extensions

If this is right

  • In slow mode, the 7B model reports higher scores than Qwen3-8B and GLM-4-9B on AIME 2024, GPQA Diamond, and LiveCodeBench, which would put a 7B-class model at the front of the 8-9B reasoning pack.
  • In fast mode the same checkpoint stays within a few points of those rivals while generating far shorter outputs, so one deployed model can serve both low-latency and high-accuracy traffic.
  • The adaptive mode reduces average output tokens by about 88 percent on GSM8K at nearly unchanged accuracy, implying most efficiency gains come from routing simple queries to fast responses.
  • Fusion training with replay beats naive co-training across all reported benchmarks, indicating that the sequencing of fast and slow data matters as much as the data themselves.
  • Domain adaptation on legal data raises LawBench average accuracy from 49.97 to 54.59, suggesting the post-training recipe transfers beyond math and code.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because adaptive mode was trained only on mathematics, an obvious extension is to build difficulty-labelled datasets for code, legal, and general QA and test whether the token-reduction effect transfers.
  • The mode selector is learned by imitating labels rather than optimized for a latency-accuracy trade-off; adding an efficiency-aware reward to the RL stage could push the frontier further.
  • The manual-switch design implies a practical serving architecture: one checkpoint can offer a cheap 'quick answer' tier and a premium 'show your work' tier with the same weights.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. The manuscript describes Pangu Embedded, a 7B-parameter LLM reasoner trained on Ascend NPUs. Stage 1 combines model-aware iterative distillation with inter-iteration model merging, followed by GRPO-style reinforcement learning guided by the Multi-source Adaptive Reward System (MARS). Stage 2 adds fast/slow thinking modes via fusion SFT, supporting both manual mode switching and automatic complexity-aware mode selection. The central claim is that Pangu Embedded outperforms similarly sized models such as Qwen3-8B and GLM-4-9B on AIME 2024, GPQA, LiveCodeBench, and other benchmarks (Abstract, Table 2).

Significance. If the central comparison were fully established, the result would be practically significant: a single 7B model delivering reasoning quality competitive with 8-9B rivals while also offering an efficient fast mode. The paper also contains genuinely useful engineering contributions: model-aware data complexity selection, inter-iteration merging, a repetition self-repair mechanism, detailed RL infrastructure for Ascend NPUs, and informative internal ablations (Tables 3-7, Figures 13-14). These parts are described with enough specificity to be partially reimplemented, which is a strength. However, the headline 'outperforms' claim is not yet statistically grounded: several baseline cells in Table 2 are internal and protocol-free, no confidence intervals are reported, and AIME 2024 is used both as a tuning target and as a headline result. No code, weights, or evaluation harness are released, which further limits independent verification.

major comments (3)
  1. [Table 2, Section 4.2] The central comparison against Qwen3-8B and GLM-4-9B mixes daggered official numbers with 'our internal evaluation' cells, but Section 4.2 does not report the prompt templates, few-shot counts, decoding temperatures, top-n-sigma/top-p settings, max tokens, or answer-extraction rules for the internal baseline cells, nor whether the same harness was used as for Pangu Embedded. Under the paper's own Eq. (11) sampling rule, AIME24 (M=30) receives 17 stochastic runs per problem, so the reported 2.5-point Thinking-mode gap (81.9 vs 79.4) is about one standard error (roughly 2.5 points at 510 effective samples per model) and is not statistically significant; the GPQA gap is borderline. No per-cell N, standard errors, or confidence intervals are provided anywhere. Because the abstract's 'outperforms' claim rests on these margins, the evaluation needs either per-cell protocols with uncertainty quantification or a weakened claim.
  2. [Section 4.5, Figure 12, Table 5] AIME 2024 is used to select the data-complexity mean mu in Eq. (2) via the experiments in Figure 12, and Table 5 uses AIME 2024 to decide that three SFT iterations suffice. Consequently the reported AIME24 Thinking score (81.9) is a selected maximum over configurations, not an unbiased estimate; the same benchmark is both a tuning target and a headline result. The paper should either perform selection on a separate development set or explicitly adjust for this selection when presenting AIME24 as evidence of superiority.
  3. [Section 4.2, 'Evaluation Baselines and Metrics'] The text states that 'the majority of our assessments employ few-shot inputs, with a minority using zero-shot prompts,' but does not specify which benchmark uses which setting or how many shots. This matters because baseline numbers from official reports may use different few-shot protocols than the internally measured cells, and the paper claims exact matching for gold-answer benchmarks without stating the extraction rules. This lack of protocol detail makes it impossible for a reader to reproduce any single cell of Table 2, including the Pangu Embedded cells.
minor comments (6)
  1. [Section 2.5.2] The paragraph on 'Other Rewards' contains editorial artifacts '(Changed from to sentence start)' that should be removed before publication.
  2. [Figure 10] The axis labels in Figure 10 are rendered as raw unicode escape sequences (e.g., '/uni0000002a/uni00000033/...'), making the figure unreadable; the figure needs to be regenerated with proper text.
  3. [Section 2.3.2] The 'Data Synthesis' paragraph appears twice with near-identical wording, once after the description of the pipeline and once after Eq. (2); the duplication should be removed.
  4. [Section 2.5.1] There is a typo in 'In GRPO algirithm' that should read 'algorithm'.
  5. [Reference [29]] Reference [29] lists 'Codeforces' as the title of the AIME 2024 citation, which appears to be an error; the correct source title should be used.
  6. [Figure 5] The figure caption contains the typo 'Curribulum Data Mixing' instead of 'Curriculum Data Mixing'.

Circularity Check

2 steps flagged · score 5.0 of 10

AIME24 is used to set the distillation complexity mean and the SFT stopping iteration, then reported as headline evidence; other benchmark claims retain independent content, so partial rather than pervasive circularity.

  1. fitted input called prediction [Section 4.5, 'Data Selection based on Complexity Score', Figure 12]
    "we conduct five experiments during the second iteration, labeled EXP0 to EXP4. In these experiments, we progressively increase the µ value in Eq. (2). Notably, EXP0 excludes highly complex samples, while EXP4 excludes overly simple ones. The data distribution and performance on AIME 2024 are illustrated in Figure 12."

    Eq. (2) defines the distillation selection probability with hyperparameter mu; Figure 12 uses AIME 2024 as the selection criterion to pick EXP1 (mu slightly below 0.5). The same AIME 2024 score is later reported in Table 2 and the Abstract as evidence that Pangu Embedded outperforms Qwen3-8B and GLM-4-9B. The benchmark result is therefore partly a fitted value chosen on the evaluation set, not an independent out-of-sample prediction, for the AIME24 component of the headline claim.

  2. fitted input called prediction [Section 4.5, 'Iteration Effects', Table 5]
    "We present the results on AIME 2024 of our Pangu Embedded (SFT version) after each iteration of the supervised fine-tuning process in Table 5. As shown, the performance improves significantly with each iteration... Subsequent iterations beyond the third yielded only marginal improvements, leading us to conclude the process after three iterations for this set of experiments."

    The decision to stop iterative SFT after three iterations is made by inspecting AIME 2024 scores in Table 5, and the final model's AIME 2024 score (81.9) is then reported in Table 2. Stopping on the same benchmark used for the headline comparison selects the training configuration to maximize that metric; the reported AIME24 margin is thus partially a product of test-set-based model selection rather than a purely first-principles or out-of-sample result.

full rationale

The main logical chain of the paper — iterative distillation, model merging, RL with MARS, and dual-system fast/slow thinking — is not circular: each stage is defined independently and evaluated on external benchmarks, and the self-citations to Pangu Ultra and Pangu-Pi are background references to the base model rather than load-bearing justification of the reported improvements. The central circularity concern is narrower: the distillation complexity mean mu and the SFT stopping rule are selected using AIME 2024, and the same AIME 2024 score is then presented as headline evidence that the model outperforms Qwen3-8B and GLM-4-9B. This makes the AIME24 component of the claim partly a fitted value, though the GPQA, LiveCodeBench, ArenaHard, and MMLU-Pro results are not selected on their own benchmarks and provide independent content. The paper also leaves baseline measurement protocols for internally evaluated cells unspecified, and the 500-sample rule implies the AIME24 gap is within statistical noise; those are correctness risks rather than circularity under the stated rules. Overall: partial circularity from test-set-based selection on AIME24, but not full derivation-by-definition circularity.

Assumptions & free parameters 7 free parameters · 5 assumptions · 0 invented entities

The central benchmark results rest on a chain of hand-chosen hyperparameters (mu, sigma, lambda_t, RL coefficients, difficulty thresholds) and on self-cited proprietary components (Pangu Ultra teacher, MARS LLM verifier). The AIME 2024 result was itself used to select mu and the number of SFT iterations, so part of the reported gain is a fitted quantity.

free parameters (7)
  • mu (selection mean in Eq. 2) = slightly less than 0.5
    Controls the Gaussian selection probability for distillation data; tuned through AIME 2024 experiments (Figure 12).
  • sigma (selection spread in Eq. 2) = not specified
    Width of the complexity selection distribution; hand-chosen.
  • lambda_t (inter-iteration merging weight, Eq. 4) = not specified
    Scales the merged delta at each iteration; hand-chosen per iteration.
  • RL hyperparameters (beta, epsilon, temperature, learning rate, mini-batch) = beta=1e-2, epsilon=0.28, temp=0.9, LR=1e-6, mini-batch=256x8
    Selected via grid search described in Section 4.1.2; epsilon taken from DAPO.
  • Curriculum mix ratio (easy:medium:hard) = 1:7:2
    Set so that most normalized advantages are non-zero; empirical choice in Section 4.1.2.
  • Complexity thresholds for adaptive mode (Cc, Tc) = Cc<=2, Tc<=2
    Heuristic labels to split easy/hard queries when constructing Dfusion (Section 3.2.1).
  • Repetition detection parameters = n=512, window=1024, Jaccard=0.6, t_detect=2048
    Hand-set for the Repetition Self-repair mechanism (Section 4.6).
assumptions (5)
  • domain assumption The teacher model Pangu Ultra provides high-quality reasoning traces for distillation.
    Invoked throughout Section 2.3; Pangu Ultra [55] is a same-team technical report and its reasoning quality is not independently assessed.
  • domain assumption The MARS LLM-based math verifier is approximately 95% precise.
    Stated in Section 2.5.2 without evaluation details or dataset; used to assign rewards during RL.
  • standard math GRPO with advantage normalization and KL penalty behaves as in prior work.
    Section 2.5.1 adopts GRPO [38]; the paper adds a zero-advantage mask on top.
  • domain assumption Pre-training data and tokenizer from Pangu Ultra produce a strong base model.
    Section 2.1 relies on Pangu Ultra's pretraining; no independent evaluation of the base model is provided.
  • domain assumption Benchmark scores are stable under the multi-run averaging in Eq. (11).
    The 500-effective-sample threshold assumes small benchmark variance; no error bars are reported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Pangu Embedded: An Efficient Dual-system LLM Reasoner with Metacognition." pith.science (2026). https://pith.science/paper/QFTSVFZB

@misc{pith2026250522375,
  author       = {Pith},
  title        = {Pith review of: Pangu Embedded: An Efficient Dual-system LLM Reasoner with Metacognition},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/QFTSVFZB}},
  note         = {Machine review of arXiv:2505.22375}
}
read the original abstract

This work presents Pangu Embedded, an efficient Large Language Model (LLM) reasoner developed on Ascend Neural Processing Units (NPUs), featuring flexible fast and slow thinking capabilities. Pangu Embedded addresses the significant computational costs and inference latency challenges prevalent in existing reasoning-optimized LLMs. We propose a two-stage training framework for its construction. In Stage 1, the model is finetuned via an iterative distillation process, incorporating inter-iteration model merging to effectively aggregate complementary knowledge. This is followed by reinforcement learning on Ascend clusters, optimized by a latency-tolerant scheduler that combines stale synchronous parallelism with prioritized data queues. The RL process is guided by a Multi-source Adaptive Reward System (MARS), which generates dynamic, task-specific reward signals using deterministic metrics and lightweight LLM evaluators for mathematics, coding, and general problem-solving tasks. Stage 2 introduces a dual-system framework, endowing Pangu Embedded with a "fast" mode for routine queries and a deeper "slow" mode for complex inference. This framework offers both manual mode switching for user control and an automatic, complexity-aware mode selection mechanism that dynamically allocates computational resources to balance latency and reasoning depth. Experimental results on benchmarks including AIME 2024, GPQA, and LiveCodeBench demonstrate that Pangu Embedded with 7B parameters, outperforms similar-size models like Qwen3-8B and GLM4-9B. It delivers rapid responses and state-of-the-art reasoning quality within a single, unified model architecture, highlighting a promising direction for developing powerful yet practically deployable LLM reasoners.

Figures

Figures reproduced from arXiv: 2505.22375 by the authors.

Figure 1
Figure 1. An illustration of the Pangu Embedded training pipeline. The pipeline consists of two primary stages: [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. An illustration of the construction of the initial data pool. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. The overall framework of the model-aware iterative distillation pipeline in Pangu Embedded. In each [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (14 more)
Figure 4
Figure 4. Figure 4: An illustration of the Multi-source Adaptive Reward System (MARS). [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 5
Figure 5. Figure 5: An illustration of the curriculum data mixing strategy for RL training. Data complexity is assessed [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 6
Figure 6. Figure 6: Overview of the RL infrastructure on Ascend NPUs for Pangu Embedded. [PITH_FULL_IMAGE:figures/full_fig_p011_6.png]
Figure 7
Figure 7. Figure 7: The latency-tolerant scheduling framework on Ascend NPUs. Log-Prob and Update denote log [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]
Figure 8
Figure 8. Figure 8: Comparison of three thinking settings: (a) Vanilla reasoner, typically always engaging in a default [PITH_FULL_IMAGE:figures/full_fig_p013_8.png]
Figure 9
Figure 9. Figure 9: An illustrative example of fast and slow adaptive thinking switch under user command with natural [PITH_FULL_IMAGE:figures/full_fig_p016_9.png]
Figure 10
Figure 10. Figure 10: Average sequence length of responses generated by different model configurations across various [PITH_FULL_IMAGE:figures/full_fig_p019_10.png]
Figure 11
Figure 11. Figure 11: Analysis of the proportion of queries for which the slow thinking mode was autonomously activated [PITH_FULL_IMAGE:figures/full_fig_p020_11.png]
Figure 12
Figure 12. Figure 12: Experiment results on AIME 2024 when using 5 different sets of training data in terms of complexity [PITH_FULL_IMAGE:figures/full_fig_p021_12.png]
Figure 13
Figure 13. Figure 13: Illustrative RL training progression for mathematical reasoning tasks, starting from an early SFT [PITH_FULL_IMAGE:figures/full_fig_p023_13.png]
Figure 14
Figure 14. Figure 14: The learning and test of code generation tasks by RL on Ascend NPUs. The y-axis indicates a [PITH_FULL_IMAGE:figures/full_fig_p023_14.png]
Figure 15
Figure 15. Figure 15: Performance comparison of different reasoning models on selected tasks from the LawBench [PITH_FULL_IMAGE:figures/full_fig_p025_15.png]
Figure 16
Figure 16. Figure 16: A demonstration of output from Pangu Embedded with Repetition Self-repair on a MATH [PITH_FULL_IMAGE:figures/full_fig_p032_16.png]
Figure 17
Figure 17. Figure 17: A demonstration of output from different reasoning models under China’s law. Incorrect reasoning [PITH_FULL_IMAGE:figures/full_fig_p033_17.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 8 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Selective Left-Shift: Turning Test-Time Compute and Difficulty-based Curation into Training Data for Low-Resource Code Generation

    cs.LG 2026-07 conditional novelty 6.0 of 10

    Left-shifting iterative compiler/test refinement into verified SFT data, then GRPO on difficulty-curated IO rewards, lifts Qwen3-8B Julia pass@1 past prior SOTA at 1/3 data and 1/6 cost, and bootstraps Ballerina.

  2. Universal Inclusion of Prescribed Primes in 3x3 Magic Squares

    math.GM 2026-04 unverdicted novelty 6.0 of 10

    Every prime q0 at least 5 appears in some 3x3 magic square with nine distinct prime entries.

  3. Towards Efficient Large Language Reasoning Models via Extreme-Ratio Chain-of-Thought Compression

    cs.LG 2026-02 unverdicted novelty 6.0 of 10

    Extra-CoT trains a semantic compressor on math CoT data, applies mixed-ratio SFT, and uses CHRPO reinforcement learning to achieve over 73% token reduction on MATH-500 with 0.6% accuracy gain on Qwen3-1.7B.

  4. Behavioral Controllability of Agentic Models for Information Extraction: From Fixed Workflows to Reflective Agents

    cs.AI 2026-07 conditional novelty 5.0 of 10

    Reflective agents extract slightly more dataset records than a fixed LLM workflow but mostly change process observability, not extraction quality or link accuracy.

  5. A Cybersecurity MLPS Large Language Model with Multi-Path Retrieval Fusion

    cs.CR 2026-07 reject novelty 4.0 of 10

    A RAG pipeline that fuses BM25, RAPTOR, and hierarchical retrieval scores slightly higher than plain RAG on ten MLPS compliance questions, but the evaluation is small and partly circular.

  6. Strategic Reflectivism In Intelligent Systems

    cs.AI 2025-05 conditional novelty 4.0 of 10

    Strategic Reflectivism holds that intelligent systems should allocate reflective reasoning tactically, weighing its benefits against its costs.

  7. PGN: Design and Implementation of a Vision-Language Navigation System Based on Pangu Multimodal Foundation Model

    cs.AI 2026-07 conditional novelty 3.0 of 10

    PGN adapts OpenPangu-7B with Q-Former alignment and LoRA to offline vision-language navigation action prediction, reaching 62.29% normalized action match on 500 held-out expert trajectories.

  8. Towards Concise and Adaptive Thinking in Large Reasoning Models: A Survey

    cs.AI 2025-07 conditional novelty 3.0 of 10

    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

61 extracted references · 18 canonical work pages · cited by 8 Pith papers

  1. [1]

    https://e.huawei.com/cn/products/computing/ascend/ atlas-800t-a2

    Huawei atlas 800t a2. https://e.huawei.com/cn/products/computing/ascend/ atlas-800t-a2

  2. [2]

    https://support.huawei.com/enterprise/ en/doc/EDOC1100349804/2bf2c017/technical-specifications?idPath=23710424| 251366513|22892968|252309113|254184887

    Huawei atlas 800t a2 technical specifications. https://support.huawei.com/enterprise/ en/doc/EDOC1100349804/2bf2c017/technical-specifications?idPath=23710424| 251366513|22892968|252309113|254184887

  3. [3]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023

  4. [4]

    Training a helpful and harmless assistant with reinforcement learning from human feedback

    Yuntao Bai, Saurav Kadavath, Sandipan Kundu, Amanda Askell, Jackson Kernion, Andy Jones, Anna Chen, Anna Goldie, Azalia Mirhoseini, Cameron McKinnon, et al. Training a helpful and harmless assistant with reinforcement learning from human feedback. arXiv preprint arXiv:2204.05862, 2022

  5. [5]

    Llama-nemotron: Efficient reasoning models

    Akhiad Bercovich, Itay Levy, Izik Golan, Mohammad Dabbah, Ran El-Yaniv, Omri Puny, Ido Galil, Zach Moshe, Tomer Ronen, Najeeb Nabwani, et al. Llama-nemotron: Efficient reasoning models. arXiv preprint arXiv:2505.00949, 2025

  6. [6]

    Forest-of-thought: Scaling test-time compute for enhancing llm reasoning

    Zhenni Bi, Kai Han, Chuanjian Liu, Yehui Tang, and Yunhe Wang. Forest-of-thought: Scaling test-time compute for enhancing llm reasoning. In ICML, 2025

  7. [7]

    Mods: Model-oriented data selection for instruction tuning

    Qianlong Du, Chengqing Zong, and Jiajun Zhang. Mods: Model-oriented data selection for instruction tuning. arXiv preprint arXiv:2311.15653, 2023

  8. [8]

    Lawbench: Benchmarking legal knowledge of large language models

    Zhiwei Fei, Xiaoyu Shen, Dawei Zhu, Fengzhe Zhou, Zhuo Han, Songyang Zhang, Kai Chen, Zongwen Shen, and Jidong Ge. Lawbench: Benchmarking legal knowledge of large language models. arXiv preprint arXiv:2309.16289, 2023

Show all 61 references
  1. [9]

    Efficient reasoning models: A survey

    Sicheng Feng, Gongfan Fang, Xinyin Ma, and Xinchao Wang. Efficient reasoning models: A survey. arXiv preprint arXiv:2504.10903, 2025

  2. [10]

    Are we done with mmlu? arXiv preprint arXiv:2406.04127, 2024

    Aryo Pradipta Gema, Joshua Ong Jun Leang, Giwon Hong, Alessio Devoto, Alberto Carlo Maria Mancino, Rohit Saxena, Xuanli He, Yu Zhao, Xiaotang Du, Mohammad Reza Ghasemi Madani, et al. Are we done with mmlu? arXiv preprint arXiv:2406.04127, 2024

  3. [11]

    Direct bulk-synchronous parallel algorithms

    Alexandros V Gerbessiotis and Leslie G Valiant. Direct bulk-synchronous parallel algorithms. Journal of parallel and distributed computing, 22(2):251–267, 1994

  4. [12]

    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

  5. [13]

    Training large language models to reason in a continuous latent space

    Shibo Hao, Sainbayar Sukhbaatar, DiJia Su, Xian Li, Zhiting Hu, Jason Weston, and Yuandong Tian. Training large language models to reason in a continuous latent space. arXiv preprint arXiv:2412.06769, 2024

  6. [14]

    More effective distributed ml via a stale synchronous parallel parameter server

    Qirong Ho, James Cipar, Henggang Cui, Seunghak Lee, Jin Kyu Kim, Phillip B Gibbons, Garth A Gibson, Greg Ganger, and Eric P Xing. More effective distributed ml via a stale synchronous parallel parameter server. In Advances in Neural Information Processing Systems, volume 26, 2013

  7. [15]

    O1 replication journey–part 2: Surpassing o1-preview through simple distillation, big progress or bitter lesson? arXiv preprint arXiv:2411.16489, 2024

    Zhen Huang, Haoyang Zou, Xuefeng Li, Yixiu Liu, Yuxiang Zheng, Ethan Chern, Shijie Xia, Yiwei Qin, Weizhe Yuan, and Pengfei Liu. O1 replication journey–part 2: Surpassing o1-preview through simple distillation, big progress or bitter lesson? arXiv preprint arXiv:2411.16489, 2024

  8. [16]

    Openai o1 system card

    Aaron Jaech, Adam Kalai, Adam Lerer, Adam Richardson, Ahmed El-Kishky, Aiden Low, Alec Hel- yar, Aleksander Madry, Alex Beutel, Alex Carney, et al. Openai o1 system card. arXiv preprint arXiv:2412.16720, 2024

  9. [17]

    Livecodebench: Holistic and contamination free evaluation of large language models for code

    Naman Jain, King Han, Alex Gu, Wen-Ding Li, Fanjia Yan, Tianjun Zhang, Sida Wang, Armando Solar-Lezama, Koushik Sen, and Ion Stoica. Livecodebench: Holistic and contamination free evaluation of large language models for code. arXiv preprint arXiv:2403.07974, 2024. 27

  10. [18]

    Efficient memory management for large language model serving with vllm

    Woosuk Kwon, Zhuohan Li, Lianmin Xie, Mu Zheng, Cody Youxiang Yu, Joseph E Gonzalez, Ion Stoica, and Hao Zhang. Efficient memory management for large language model serving with vllm. arXiv preprint arXiv:2309.06180, 2023

  11. [19]

    Efficient memory management for large language model serving with pagedattention

    Woosuk Kwon, Zhuohan Li, Siyuan Zhuang, Ying Sheng, Lianmin Zheng, Cody Hao Yu, Joseph Gonzalez, Hao Zhang, and Ion Stoica. Efficient memory management for large language model serving with pagedattention. In Proceedings of the 29th Symposium on Operating Systems Principles , ...

  12. [20]

    Hybridflow: A flexible and efficient rlhf framework

    ByteDance AI Lab. Hybridflow: A flexible and efficient rlhf framework. In USENIX Symposium on Operating Systems Design and Implementation, 2023

  13. [21]

    From quantity to quality: Boosting LLM performance with self-guided data selection for instruction tuning

    Ming Li, Yong Zhang, Zhitao Li, Jiuhai Chen, Lichang Chen, Ning Cheng, Jianzong Wang, Tianyi Zhou, and Jing Xiao. From quantity to quality: Boosting LLM performance with self-guided data selection for instruction tuning. In Kevin Duh, Helena Gomez, and Steven Bethard, editors,...

  14. [22]

    Gonzalez, and Ion Stoica

    Tianle Li, Wei-Lin Chiang, Evan Frick, Lisa Dunlap, Banghua Zhu, Joseph E. Gonzalez, and Ion Stoica. From live data to high-quality benchmarks: The arena-hard pipeline, April 2024

  15. [23]

    Small models struggle to learn from strong reasoners

    Yuetai Li, Xiang Yue, Zhangchen Xu, Fengqing Jiang, Luyao Niu, Bill Yuchen Lin, Bhaskar Ramasubra- manian, and Radha Poovendran. Small models struggle to learn from strong reasoners. arXiv preprint arXiv:2502.12143, 2025

  16. [24]

    Rllib: Abstractions for distributed reinforcement learning.International Conference on Machine Learning, 2018

    Eric Liang, Richard Liaw, Robert Nishihara, Philipp Moritz, Roy Fox, Ken Goldberg, Joseph E Gonzalez, Michael I Jordan, and Ion Stoica. Rllib: Abstractions for distributed reinforcement learning.International Conference on Machine Learning, 2018

  17. [25]

    Let’s verify step by step

    Hunter Lightman, Vineet Kosaraju, Yuri Burda, Harrison Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. Let’s verify step by step. In The Twelfth International Conference on Learning Representations, 2023

  18. [26]

    Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437, 2024

    Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, et al. Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437, 2024

  19. [27]

    What makes good data for alignment? a comprehensive study of automatic data selection in instruction tuning

    Wei Liu, Weihao Zeng, Keqing He, Yong Jiang, and Junxian He. What makes good data for alignment? a comprehensive study of automatic data selection in instruction tuning. In The Twelfth International Conference on Learning Representations

  20. [28]

    O1-pruner: Length-harmonizing fine-tuning for o1-like reasoning pruning

    Haotian Luo, Li Shen, Haiying He, Yibo Wang, Shiwei Liu, Wei Li, Naiqiang Tan, Xiaochun Cao, and Dacheng Tao. O1-pruner: Length-harmonizing fine-tuning for o1-like reasoning pruning. arXiv preprint arXiv:2501.12570, 2025

  21. [29]

    Codeforces

    MAA. Codeforces. American Invitational Mathematics Examination - AIME 2024, 2024. https:// maa.org/math-competitions/american-invitational-mathematics-examination-aime

  22. [30]

    Teaching small language models to reason

    Lucie Charlotte Magister, Jonathan Mallinson, Jakub Dominik Adamek, Eric Malmi, and Aliaksei Severyn. Teaching small language models to reason. In The 61st Annual Meeting Of The Association For Computational Linguistics, 2023

  23. [31]

    s1: Simple test-time scaling

    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

  24. [32]

    Introducing openai o1, 2024

    OpenAI. Introducing openai o1, 2024

  25. [33]

    Training language models to follow instructions with human feedback

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback. Advances in Neural Information Processing Systems, 35:2773...

  26. [34]

    Gpqa: A graduate-level google-proof q&a benchmark

    David Rein, Betty Li Hou, Asa Cooper Stickland, Jackson Petty, Richard Yuanzhe Pang, Julien Dirani, Julian Michael, and Samuel R Bowman. Gpqa: A graduate-level google-proof q&a benchmark. In First Conference on Language Modeling, 2024

  27. [35]

    Learning or Self-aligning? Rethinking Instruction Fine-tuning, August 2024

    Mengjie Ren, Boxi Cao, Hongyu Lin, Cao Liu, Xianpei Han, Ke Zeng, Guanglu Wan, Xunliang Cai, and Le Sun. Learning or Self-aligning? Rethinking Instruction Fine-tuning, August 2024. arXiv:2402.18243 [cs]. 28

  28. [36]

    Code llama: Open foundation models for code

    Baptiste Roziere, Jonas Gehring, Fabian Gloeckle, Sten Sootla, Itai Gat, Xiaoqing Ellen Tan, Yossi Adi, Jingyu Liu, Romain Sauvestre, Tal Remez, et al. Code llama: Open foundation models for code. arXiv preprint arXiv:2308.12950, 2023

  29. [37]

    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

  30. [38]

    Deepseekmath: Pushing the limits of mathematical reasoning in open language models

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

  31. [39]

    Llm pruning and distillation in practice: The minitron approach

    Sharath Turuvekere Sreenivas, Saurav Muralidharan, Raviraj Joshi, Marcin Chochowski, Ameya Sunil Mahabaleshwarkar, Gerald Shen, Jiaqi Zeng, Zijia Chen, Yoshi Suhara, Shizhe Diao, et al. Llm pruning and distillation in practice: The minitron approach. arXiv preprint arXiv:2408....

  32. [40]

    Fast best-of-n decoding via speculative rejection

    Hanshi Sun, Momin Haider, Ruiqi Zhang, Huitao Yang, Jiahao Qiu, Ming Yin, Mengdi Wang, Peter Bartlett, and Andrea Zanette. Fast best-of-n decoding via speculative rejection. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024

  33. [41]

    Top- nσ: Not all logits are you need, 2024

    Chenxia Tang, Jianchun Liu, Hongli Xu, and Liusheng Huang. Top- nσ: Not all logits are you need, 2024

  34. [42]

    Qwq: Reflect deeply on the boundaries of the unknown

    Qwen Team. Qwq: Reflect deeply on the boundaries of the unknown. https://qwenlm.github.io/blog/qwq- 32b-preview/. Accessed 28-11-2024

  35. [43]

    Llama: Open and efficient foundation language models

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023

  36. [44]

    Learning when to think: Shaping adaptive reasoning in r1-style models via multi-stage rl

    Songjun Tu, Jiahao Lin, Qichao Zhang, Xiangyu Tian, Linjing Li, Xiangyuan Lan, and Dongbin Zhao. Learning when to think: Shaping adaptive reasoning in r1-style models via multi-stage rl. arXiv preprint arXiv:2505.10832, 2025

  37. [45]

    A survey on large language model based autonomous agents

    Lei Wang, Chen Ma, Xueyang Feng, Zeyu Zhang, Hao Yang, Jingsen Zhang, Zhiyuan Chen, Jiakai Tang, Xu Chen, Yankai Lin, et al. A survey on large language model based autonomous agents. Frontiers of Computer Science, 18(6):186345, 2024

  38. [46]

    Pangu-pi: Enhancing language model architectures via nonlinearity compensation

    Yunhe Wang, Hanting Chen, Yehui Tang, Tianyu Guo, Kai Han, Ying Nie, Xutao Wang, Hailin Hu, Zheyuan Bai, Yun Wang, et al. Pangu-pi: Enhancing language model architectures via nonlinearity compensation. arXiv preprint arXiv:2312.17276, 2023

  39. [47]

    Chain-of-thought prompting elicits reasoning in large language models

    Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824–24837, 2022

  40. [48]

    Fast-slow thinking for large vision-language model reasoning

    Wenyi Xiao, Leilei Gan, Weilong Dai, Wanggui He, Ziwei Huang, Haoyuan Li, Fangxun Shu, Zhelun Yu, Peng Zhang, Hao Jiang, et al. Fast-slow thinking for large vision-language model reasoning. arXiv preprint arXiv:2504.18458, 2025

  41. [49]

    A survey on knowledge distillation of large language models

    Xiaohan Xu, Ming Li, Chongyang Tao, Tao Shen, Reynold Cheng, Jinyang Li, Can Xu, Dacheng Tao, and Tianyi Zhou. A survey on knowledge distillation of large language models. arXiv preprint arXiv:2402.13116, 2024

  42. [50]

    Qwen3 technical report

    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, 2025

  43. [51]

    Survey on knowledge distillation for large language models: methods, evaluation, and application

    Chuanpeng Yang, Yao Zhu, Wang Lu, Yidong Wang, Qian Chen, Chenlong Gao, Bingjie Yan, and Yiqiang Chen. Survey on knowledge distillation for large language models: methods, evaluation, and application. ACM Transactions on Intelligent Systems and Technology, 2024

  44. [52]

    Limo: Less is more for reasoning

    Yixin Ye, Zhen Huang, Yang Xiao, Ethan Chern, Shijie Xia, and Pengfei Liu. Limo: Less is more for reasoning. arXiv preprint arXiv:2502.03387, 2025

  45. [53]

    Towards widening the distillation bottleneck for reasoning models

    Huifeng Yin, Yu Zhao, Minghao Wu, Xuanfan Ni, Bo Zeng, Hao Wang, Tianqi Shi, Liangying Shao, Chenyang Lyu, Longyue Wang, et al. Towards widening the distillation bottleneck for reasoning models. arXiv preprint arXiv:2503.01461, 2025

  46. [54]

    Entropy law: The story behind data compression and llm performance

    Mingjia Yin, Chuhan Wu, Yufei Wang, Hao Wang, Wei Guo, Yasheng Wang, Yong Liu, Ruiming Tang, Defu Lian, and Enhong Chen. Entropy law: The story behind data compression and llm performance. arXiv preprint arXiv:2407.06645, 2024. 29

  47. [55]

    Pangu ultra: Pushing the limits of dense large language models on ascend npus

    Yichun Yin, Wenyong Huang, Kaikai Song, Yehui Tang, Xueyu Wu, Wei Guo, Peng Guo, Yaoyuan Wang, Xiaojun Meng, Yasheng Wang, et al. Pangu ultra: Pushing the limits of dense large language models on ascend npus. arXiv preprint arXiv:2504.07866, 2025

  48. [56]

    Distilling system 2 into system 1

    Ping Yu, Jing Xu, Jason Weston, and Ilia Kulikov. Distilling system 2 into system 1. arXiv preprint arXiv:2407.06023, 2024

  49. [57]

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

    Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Tiantian Fan, Gaohong Liu, Lingjun Liu, Xin Liu, et al. Dapo: An open-source llm reinforcement learning system at scale. arXiv preprint arXiv:2503.14476, 2025

  50. [58]

    Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild

    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. arXiv preprint arXiv:2503.18892, 2025

  51. [59]

    Adaptthink: Reasoning models can learn when to think

    Jiajie Zhang, Nianyi Lin, Lei Hou, Ling Feng, and Juanzi Li. Adaptthink: Reasoning models can learn when to think. arXiv preprint arXiv:2505.13417, 2025

  52. [60]

    Am deepseek r1 distilled 1.4m, 2025

    Han Zhao, Haotian Wang, Yiping Peng, Sitong Zhao, Xiaoyu Tian, Shuaiting Chen, Yunjie Ji, and Xiangang Li. Am deepseek r1 distilled 1.4m, 2025

  53. [61]

    铁路部门没有过错

    Chunting Zhou, Pengfei Liu, Puxin Xu, Srini Iyer, Jiao Sun, Yuning Mao, Xuezhe Ma, Avia Efrat, Ping Yu, Lili Yu, Susan Zhang, Gargi Ghosh, Mike Lewis, Luke Zettlemoyer, and Omer Levy. LIMA: Less Is More for Alignment, May 2023. arXiv:2305.11206 [cs]. 30 A Contributions and Ack...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.