Pith. sign in

REVIEW 2 major objections 3 minor 32 references

CausalOPD: First-Wrong-Step Supervision for Distilling Causal Chain Reasoning

T0 review · 2 major / 3 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper argues that distilling causal reasoning should supervise the student at its first verifiably wrong step, and reports a 23.4-point path-correctness gain over sequence-level on-policy distillation with the…

desk verdict A well-engineered distillation recipe for causal chain reasoning with strong internal evidence; the RLWR headline needs the strict variant reported, but the Path gains and human audit carry the paper. read the letter →

arxiv 2608.03673 v1 pith:D4XJJNYH submitted 2026-08-04 cs.LG

classification cs.LG
keywords causalchainreasoningknowledgedistillationon-policyprocesssupervisionfirst-wrong-steplocalizationcurriculumlearningreinforcementpathcorrectness
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 argues that when causal reasoning is distilled from a large teacher into a small student, the right place to supervise is not the final answer or the whole chain but the earliest transition that can be shown to contradict domain knowledge. It presents CausalOPD, in which a knowledge-augmented teacher verifies the student's own rollouts, finds that first wrong step, and uses short-horizon reinforcement learning to repair only the suffix from that step onward, while a curriculum schedules repairs from evidence-level to mechanism-level to conclusion-level errors. The authors report that this raises average path correctness by 23.4 percentage points over sequence-level on-policy distillation, lowers the right-label-wrong-reasoning rate from 15.7% to 4.4%, and lets 8B students beat both evaluated proprietary models on path correctness in all three domains.

What carries the argument

The load-bearing object is the first-wrong-step state $s^* = ((x, \mu_x), z_{<h^*}, c^*, \rho^*, g(h^*))$, which packages the verified prefix, the violated constraint, the implicated entities, and the causal stage. It is produced by a tri-state evaluator $V_K$ that returns verified, violated, or unresolved for each typed transition $z_h = (g_h, e_h, r_h, d_h)$, where $e_h$ is the cited evidence, $r_h$ is the invoked rule or relation, and $d_h$ is the resulting decision. Typed transitions make constraints inspectable, and the unresolved state prevents insufficient knowledge from becoming false supervision. The same boundary drives the curriculum: when the incidence of first wrong steps at the active stage falls below a threshold, training advances from evidence to mechanism to conclusion, following the order in which errors propagate.

What would settle it

Run CausalOPD on a new benchmark whose independently written reference reasoning chains contain a substantial fraction of cases in which the earliest wrong step occurs before the evidence stage is complete, so the fixed Evidence-to-Mechanism-to-Conclusion curriculum is mis-ordered for those cases; if the path-correctness advantage over sequence-level OPD survives such mis-ordering, the claimed mechanism is not the causal-stage curriculum, and the gain would have to come from localization or verifier coverage instead.

Watch

Extended reading notes

Core claim

The paper's central claim is that a single knowledge-verified boundary, the first wrong step, can coordinate all three decisions that process-level distillation leaves open: what to repair, where optimization begins, and when a correction is trained. Concretely, the verifier $V_K(z_h \mid x, z_{<h}, \mu_x)$ labels each transition as verified, violated, or unresolved against explicit causal rules, entity relations, and structural constraints; $h^* = \min\{h : V_K(z_h \mid x, z_{<h}, \mu_x) = \text{violated}\}$ is the first wrong step. The violated constraint $c^*$ says what is wrong, its position $h^*$ sets the optimization horizon, and its stage $g(h^*)$, drawn from Evidence, Mechanism, or Conclusion, schedules the curriculum. The paper claims this localization, together with verified-prefix retention and fresh on-policy rollouts, is what converts process rewards into targeted repair: the ablations attribute the largest losses to removing first-wrong-step localization, teacher revision, and the causal stage ordering.

Load-bearing premise

The method stands on the assumption that the target reasoning really does proceed in the fixed order Evidence, then Mechanism, then Conclusion, and that the available domain knowledge is complete enough to mark the earliest step that breaks that order; if a real case violates that order or the knowledge misses a step, the first-wrong-step boundary and the curriculum rest on a false premise.

Editorial extensions

If this is right

  • If CausalOPD works as reported, process-level distillation of causal reasoning should be evaluated by path correctness rather than conclusion accuracy alone, because correct conclusions reached through invalid steps are detected and repaired.
  • Short-horizon optimization from the first wrong step should replace full-trajectory reinforcement learning for step-dependent causal tasks, since full-trajectory process RL recovered only 38.8% of the path-correctness gain.
  • A causal-stage curriculum that repairs evidence errors before mechanism and conclusion errors should yield better final competence than stage-agnostic or reverse-order scheduling, since reversing the order cost 16.4 percentage points in the reported comparisons.
  • On-policy distillation should rebuild correction pools from fresh rollouts every round rather than reusing a stale pool, since the budget-matched stale pool lagged by 9.3 percentage points and plateaued after round three.
  • Domain-specific 8B students can surpass larger proprietary models on reasoning-path correctness in industrial, clinical, and legal settings, supporting local deployment under privacy or latency constraints.

Reading between the lines

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

  • The authors do not claim this, but the same first-violation curriculum could be probed outside LLM distillation: any sequential diagnosis or repair process with causally ordered stages should show a similar benefit if the boundary is placed at the earliest verifiable violation.
  • A further implication left implicit is that the gain should degrade as verifier coverage drops; a direct experiment would deliberately remove constraint templates and check whether the path-correctness advantage tracks verifier coverage rather than the curriculum stage itself.
  • The paper evaluates on domains where typed causal stages are supplied, so an untested extension is whether the method can infer stages from data and still retain most of the gain, which would determine how far it reaches beyond curated knowledge bases.
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

2 major / 3 minor

Summary. The paper proposes CausalOPD, a curriculum-based online process distillation method for step-dependent causal reasoning. It uses a knowledge-augmented teacher that verifies each student-generated transition as verified, violated, or unresolved, identifies the earliest verifiable violation (the first wrong step), preserves the verified prefix, and applies short-horizon reinforcement learning to the affected suffix. Training proceeds through cold-start SFT on teacher-revised trajectories, correction-state SFT, and a causal-stage curriculum advancing from evidence to mechanism to conclusion. Experiments on industrial AHU fault diagnosis, DDXPlus respiratory diagnosis, and MSLR insider trading compare an 8B Qwen3 student against five baselines and two proprietary LLMs, reporting large gains in strict path correctness (83.16% average vs. 59.72% for sequence-level OPD), a reduction in the right-label-wrong-reasoning (RLWR) rate from 15.7% to 4.4%, and retained cross-system industrial transfer.

Significance. If the reported results hold, CausalOPD is a meaningful advance in process supervision for structured causal reasoning, and the paper is unusually careful in its internal validation: five controlled baselines, component ablations with matched budgets, Holm-corrected pairwise tests, a human audit with 90.8-92.4% agreement and Kendall tau = 1.0, validation of the verifier against independently constructed gold chains, and cross-system industrial evaluation. The tri-state verifier and typed transition representation are a principled response to coverage limitations. The main unresolved risk is that the headline RLWR metric excludes 'unresolved' transitions while the training objective assigns them zero reward, so the claim about reducing wrong reasoning is not established for the strict definition; the Path metric, which counts unresolved transitions as failures, mitigates but does not eliminate this concern.

major comments (2)
  1. [Abstract, §4.1, Eq. (5), §3.3] The headline RLWR reduction (from 15.7% to 4.4%) is not established for the stated quantity 'wrong reasoning'. Section 4.1 defines RLWR using only confirmed violations, with a stricter variant counting unresolved transitions deferred to the appendix. Meanwhile Eq. (5) gives unresolved transitions zero reward (R_nv = 0) and Eq. (3) excludes trajectories with unresolved prefixes from the localized objective. A student can therefore lower confirmed-violation RLWR by making problematic transitions unresolved (for example, by omitting a required field, citing ambiguous evidence, or exploiting a coverage gap) without incurring a training penalty and without the failure being counted. The Path metric is conservative and the large Path gains mitigate this concern, but they do not by themselves validate the specific RLWR claim. The authors must report the strict RLWR (counting unresolved transitions as wrong reasoning) for the final model and for all baselines, and should discuss why the zero-reward treatment of unresolved transitions does not encourage this form of evasion.
  2. [§3.1 and §3.4] The framework's central premise is that valid causal reasoning trajectories obey the monotonic stage ordering Evidence ≺ Mechanism ≺ Conclusion, with g(h) ⪯ g(h+1), and the curriculum in Section 3.4 depends on this ordering. The main text does not provide per-domain evidence that the gold chains or the accepted student trajectories actually respect this ordering, nor does it report the trajectory of the unresolved rate over training rounds, even though the curriculum scheduler uses a bounded unresolved rate as a condition for advancement. Since the reverse-order ablation (Section 4.4) shows the ordering matters, the authors should report, per domain, the fraction of gold and accepted trajectories satisfying the monotonicity assumption and the unresolved-rate trend; otherwise the central premise is asserted rather than empirically demonstrated.
minor comments (3)
  1. [Figure 1] Figure 1 contains many abbreviations and symbols (M2, E1, Q1-Q3, h*, c*, rho*, g(h*)) that are not fully explained in the caption; a legend or expanded caption would make the pipeline much easier to follow.
  2. [§3.4] The curriculum advancement thresholds, the rehearsal decay ratio, and the unresolved-rate bound are all deferred to the technical appendix; stating at least the concrete threshold values used in the experiments would make the scheduler reproducible from the main text.
  3. [§4.1] The sentence describing the industrial test set ('The industrial test set (3,942 cases) adds two cross-system sets...') is ambiguous about whether the 3,942 cases already include the cross-system sets or are additional to them; please clarify the exact composition.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: CausalOPD's central claims are anchored to independently constructed gold chains and a strict path metric; the few self-citations and the deferred strict-RLWR check do not make the derivation circular.

full rationale

The central derivation is not circular. The first-wrong-step localization (Eqs. 1–4) is an operational definition, not a result derived from the target claim; the method then optimizes a multi-term reward (Eq. 5) and is evaluated with a strict path metric that counts unresolved transitions as failures. The possible concern that the reward and the path/RLWR metrics share the same tri-state verifier is mitigated by explicit decoupling: gold chains are 'constructed separately from the training criteria' and 'Gold chains are used only for evaluation and are never exposed to the training verifier'; verifier agreement with those chains is 97.68–99.24%, and a method-blinded human audit reproduces the path ordering (90.8–92.4% agreement, Kendall tau = 1.0). The RLWR headline excludes unresolved transitions and the stricter variant is deferred to the appendix, which is a missing-support and robustness limitation rather than a circular step, especially since the paper states the curriculum keeps the unresolved rate bounded and the strict Path metric moves in the same direction. Self-citations to Zhang et al. (2025a, 2026) are used only for the industrial cross-system protocol and external consistency checks; they are not load-bearing for the core claim. No equation in the paper reduces to its own input, and no fitted parameter is renamed as a prediction.

Assumptions & free parameters 3 free parameters · 3 assumptions · 1 invented entities

The central numbers depend on three families of hand-chosen components: reward weights and curriculum thresholds (free parameters), the typed-stage ordering and the reliability of a tri-state verifier (domain assumptions), and the cold-start acceptance criterion. No new physical entities are introduced; the algorithmic constructs, such as the coverage-aware evaluator, are internal design choices with no external falsifiable handle.

free parameters (3)
  • Curriculum thresholds = not stated in main text
    The stage-advance rule in Section 3.4 requires thresholds for first-wrong-step incidence, earlier-stage tolerance, and unresolved rate; values are deferred to the technical appendix, so the ablation results depend on hand-chosen operating points.
  • Reward coefficients lambda_1, lambda_2, lambda_3 = not stated in main text
    Equation (5) mixes repair, consistency, outcome, and completion rewards; coefficients are not given in the reviewed text, and they shape the RL update that produces the headline numbers.
  • Earlier-stage rehearsal decay ratio = not stated in main text
    Section 3.4 mentions a decaying rehearsal ratio to limit forgetting, but the decay schedule is not specified in the reviewed text.
assumptions (3)
  • domain assumption Reasoning trajectories decompose into typed causal stages with monotonic progression Evidence, Mechanism, Conclusion and g(h) <= g(h + 1).
    Section 3.1 defines structured transitions and the stage ordering; the curriculum and the first-wrong-step boundary both depend on this ordering, and the paper states it as a design choice rather than justifying it from data.
  • domain assumption A tri-state verifier over explicit domain constraints can reliably classify transitions as verified, violated, or unresolved, and unresolved states prevent false supervision.
    Section 3.1 and Section 4.3 assume V_K is reliable; the paper validates it against gold chains with 96.9-99.2% agreement, but the verifier is a constructed artifact whose coverage limits what the framework can certify.
  • domain assumption Accepted teacher trajectories, produced by a construct-evaluate-revise loop with the privileged conclusion y, are credible references for cold-start SFT and repair.
    Section 3.2 assumes that evaluator feedback plus y agreement yields trustworthy demonstrations; the largest ablation (w/o teacher revision, -28.9 pp) shows cold-start quality is load-bearing.
invented entities (1)
  • Coverage-aware tri-state evaluator V_K (verified/violated/unresolved)
    purpose: Judges each typed transition against domain-specific causal rules, entity relationships, and structural constraints, and supplies the first-wrong-step signal used for localization and reward.
    This is a training-time algorithmic construct, not a physical entity. Its reliability is validated in the paper against independently built gold chains, but it has no falsifiable prediction outside the paper because the knowledge bases and evaluation criteria were constructed for these benchmarks.

how reviews work

0 comments
Cite this review

Pith. "Pith review of CausalOPD: First-Wrong-Step Supervision for Distilling Causal Chain Reasoning." pith.science (2026). https://pith.science/paper/D4XJJNYH

@misc{pith2026260803673,
  author       = {Pith},
  title        = {Pith review of: CausalOPD: First-Wrong-Step Supervision for Distilling Causal Chain Reasoning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/D4XJJNYH}},
  note         = {Machine review of arXiv:2608.03673}
}
read the original abstract

Many critical reasoning tasks, including clinical diagnosis, legal judgment, and industrial fault diagnosis, require step-dependent causal chains in which early errors propagate and correct conclusions can mask invalid reasoning. Although large language models perform well on such tasks, privacy, latency, and controllability motivate distillation into locally deployable models. Standard trajectory imitation does not correct process errors on the student's own rollout distribution. We propose CausalOPD, a curriculum online process distillation framework. A knowledge-augmented teacher first provides trajectories grounded in domain-specific causal rules, entity relations, and structural constraints. The student then generates on-policy trajectories, and the teacher identifies the first wrong step, defined as the earliest transition that verifiably violates available constraints. Starting from the verified prefix, short-horizon reinforcement learning repairs this localized failure. A causal-stage curriculum advances from evidence-level to mechanism-level and conclusion-level errors, following their propagation order. Across three domains, CausalOPD improves average path correctness by 23.4 percentage points over sequence-level online process distillation and reduces the right-label-wrong-reasoning rate from 15.7% to 4.4%. The domain-specific 8B students also surpass both evaluated proprietary references in path correctness across all domains.

Figures

Figures reproduced from arXiv: 2608.03673 by the authors.

Figure 1
Figure 1. (a–c) Three challenges in causal-chain distillation; (d) the CausalOPD training pipeline. [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Iterative behavior (industrial). (a) Fresh vs. budget [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

32 extracted references · 19 canonical work pages

  1. [1]

    Agarwal, R.; Vieillard, N.; Zhou, Y.; Stanczyk, P.; Ramos, S.; Geist, M.; and Bachem, O. 2024. On-Policy Distillation of Language Models: Learning from Self-Generated Mistakes. In The Twelfth International Conference on Learning Representations

  2. [2]

    Bengio, Y.; Louradour, J.; Collobert, R.; and Weston, J. 2009. Curriculum Learning. In Proceedings of the 26th International Conference on Machine Learning, 41--48

  3. [3]

    Fansi Tchango, A.; Goel, R.; Wen, Z.; Martel, J.; and Ghosn, J. 2022. DDXPlus : A New Dataset for Automatic Medical Diagnosis. In Advances in Neural Information Processing Systems 35, Datasets and Benchmarks Track

  4. [4]

    Geirhos, R.; Jacobsen, J.-H.; Michaelis, C.; Zemel, R.; Brendel, W.; Bethge, M.; and Wichmann, F. A. 2020. Shortcut Learning in Deep Neural Networks. Nature Machine Intelligence, 2(11): 665--673

  5. [5]

    Granderson, J.; Lin, G.; Chen, Y.; Casillas, A.; Im, P.; Jung, S.; Benne, K.; Ling, J.; Gorthala, R.; Wen, J.; Chen, Z.; Huang, S.; and Vrabie, D. 2022. LBNL Fault Detection and Diagnostics Datasets. Open Energy Data Initiative (OEDI), Lawrence Berkeley National Laboratory

  6. [6]

    Gu, Y.; Dong, L.; Wei, F.; and Huang, M. 2024. MiniLLM: Knowledge Distillation of Large Language Models. In The Twelfth International Conference on Learning Representations

  7. [7]

    Gudibande, A.; Wallace, E.; Snell, C.; Geng, X.; Liu, H.; Abbeel, P.; Levine, S.; and Song, D. 2024. The False Promise of Imitating Proprietary LLMs . In The Twelfth International Conference on Learning Representations

  8. [8]

    E.; R \'e , C.; Chilton, A.; Narayana, A.; Chohlas-Wood, A.; Peters, A.; Waldon, B.; Rockmore, D

    Guha, N.; Nyarko, J.; Ho, D. E.; R \'e , C.; Chilton, A.; Narayana, A.; Chohlas-Wood, A.; Peters, A.; Waldon, B.; Rockmore, D. N.; et al. 2023. LegalBench: A Collaboratively Built Benchmark for Measuring Legal Reasoning in Large Language Models. In Advances in Neural Information Processing Systems 36, Datasets and Benchmarks Track

Show all 32 references
  1. [9]

    Guo, D.; Yang, D.; Zhang, H.; Song, J.; Wang, P.; Zhu, Q.; Xu, R.; Zhang, R.; Ma, S.; Bi, X.; et al. 2025. DeepSeek-R1 Incentivizes Reasoning in LLMs through Reinforcement Learning. Nature, 645(8081): 633--638

  2. [10]

    C.; Nalmpantis, C.; Dwivedi-Yu, J.; Zhuravinskyi, M.; Hambro, E.; and Raileanu, R

    Havrilla, A.; Raparthy, S. C.; Nalmpantis, C.; Dwivedi-Yu, J.; Zhuravinskyi, M.; Hambro, E.; and Raileanu, R. 2024. GLoRe : When, Where, and How to Improve LLM Reasoning via Global and Local Refinements. In Proceedings of the 41st International Conference on Machine Learning, ...

  3. [11]

    Hinton, G.; Vinyals, O.; and Dean, J. 2015. Distilling the Knowledge in a Neural Network. arXiv preprint arXiv:1503.02531

  4. [12]

    Hsieh, C.-Y.; Li, C.-L.; Yeh, C.-K.; Nakhost, H.; Fujii, Y.; Ratner, A.; Krishna, R.; Lee, C.-Y.; and Pfister, T. 2023. Distilling Step-by-Step! Outperforming Larger Language Models with Less Training Data and Smaller Model Sizes. In Findings of the Association for Computation...

  5. [13]

    S.; Yu, A

    Huang, J.; Chen, X.; Mishra, S.; Zheng, H. S.; Yu, A. W.; Song, X.; and Zhou, D. 2024. Large Language Models Cannot Self-Correct Reasoning Yet. In The Twelfth International Conference on Learning Representations

  6. [14]

    Jin, Z.; Chen, Y.; Leeb, F.; Gresele, L.; Kamal, O.; Lyu, Z.; Blin, K.; Gonzalez Adauto, F.; Kleiman-Weiner, M.; Sachan, M.; and Sch \"o lkopf, B. 2023. CLadder : Assessing Causal Reasoning in Language Models. In Advances in Neural Information Processing Systems, volume 36

  7. [15]

    Kang, M.; Lee, S.; Baek, J.; Kawaguchi, K.; and Hwang, S. J. 2023. Knowledge-Augmented Reasoning Distillation for Small Language Models in Knowledge-Intensive Tasks. In Advances in Neural Information Processing Systems, volume 36

  8. [16]

    D.; Singh, A.; Baumli, K.; Iqbal, S.; Bishop, C.; Roelofs, R.; et al

    Kumar, A.; Zhuang, V.; Agarwal, R.; Su, Y.; Co-Reyes, J. D.; Singh, A.; Baumli, K.; Iqbal, S.; Bishop, C.; Roelofs, R.; et al. 2025. Training Language Models to Self-Correct via Reinforcement Learning. In The Thirteenth International Conference on Learning Representations

  9. [17]

    Lightman, H.; Kosaraju, V.; Burda, Y.; Edwards, H.; Baker, B.; Lee, T.; Leike, J.; Schulman, J.; Sutskever, I.; and Cobbe, K. 2024. Let's Verify Step by Step. In The Twelfth International Conference on Learning Representations

  10. [18]

    P.; Hermann, K.; Welleck, S.; Yazdanbakhsh, A.; and Clark, P

    Madaan, A.; Tandon, N.; Gupta, P.; Hallinan, S.; Gao, L.; Wiegreffe, S.; Alon, U.; Dziri, N.; Prabhumoye, S.; Yang, Y.; Gupta, S.; Majumder, B. P.; Hermann, K.; Welleck, S.; Yazdanbakhsh, A.; and Clark, P. 2023. Self-Refine: Iterative Refinement with Self-Feedback. In Advances...

  11. [19]

    Muhebwa, A.; and Osman, K. K. 2025. Causal Distillation: Transferring Structured Explanations from Large to Compact Language Models. arXiv preprint arXiv:2505.19511

  12. [20]

    Pan, L.; Albalak, A.; Wang, X.; and Wang, W. 2023. Logic-LM : Empowering Large Language Models with Symbolic Solvers for Faithful Logical Reasoning. In Findings of the Association for Computational Linguistics: EMNLP 2023, 3806--3824

  13. [21]

    S.; Wei, J.; Chung, H

    Singhal, K.; Azizi, S.; Tu, T.; Mahdavi, S. S.; Wei, J.; Chung, H. W.; Scales, N.; Tanwani, A.; Cole-Lewis, H.; Pfohl, S.; et al. 2023. Large Language Models Encode Clinical Knowledge. Nature, 620(7972): 172--180

  14. [22]

    T.; Rota, P.; and Sebe, N

    Soviany, P.; Ionescu, R. T.; Rota, P.; and Sebe, N. 2022. Curriculum Learning: A Survey. International Journal of Computer Vision, 130: 1526--1565

  15. [23]

    Turpin, M.; Michael, J.; Perez, E.; and Bowman, S. R. 2023. Language Models Don't Always Say What They Think: Unfaithful Explanations in Chain-of-Thought Prompting. In Advances in Neural Information Processing Systems, volume 36

  16. [24]

    Uesato, J.; Kushman, N.; Kumar, R.; Song, F.; Siegel, N.; Wang, L.; Creswell, A.; Irving, G.; and Higgins, I. 2022. Solving Math Word Problems with Process- and Outcome-Based Feedback. arXiv preprint arXiv:2211.14275

  17. [25]

    Wang, P.; Li, L.; Shao, Z.; Xu, R.; Dai, D.; Li, Y.; Chen, D.; Wu, Y.; and Sui, Z. 2024. Math-Shepherd: Verify and Reinforce LLMs Step-by-Step without Human Annotations. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics, 9426--9439

  18. [26]

    Wen, J.; and Li, S. 2011. RP-1312 -- Tools for Evaluating Fault Detection and Diagnostic Methods for Air-Handling Units. Technical report, ASHRAE

  19. [27]

    Xi, Z.; Chen, W.; Hong, B.; Jin, S.; Zheng, R.; He, W.; Ding, Y.; Liu, S.; Guo, X.; Wang, J.; et al. 2024. Training Large Language Models for Reasoning through Reverse Curriculum Reinforcement Learning. In Proceedings of the 41st International Conference on Machine Learning

  20. [28]

    Yu, W.; Lin, X.; Ni, L.; Cheng, J.; and Sha, L. 2025. Benchmarking Multi-Step Legal Reasoning and Analyzing Chain-of-Thought Effects in Large Language Models. arXiv preprint arXiv:2511.07979

  21. [29]

    Zhang, J.; Wang, F.; Zhang, C.; Liu, Y.; Lu, J.; and Zhao, Y. 2026. LightLLM4FDD : Domain-Specific Lightweight Large Language Models for Fault Detection and Diagnosis in Building HVAC Systems. Advanced Engineering Informatics, 74: 104794

  22. [30]

    Zhang, J.; Zhang, C.; Lu, J.; and Zhao, Y. 2025 a . Domain-Specific Large Language Models for Fault Diagnosis of Heating, Ventilation, and Air Conditioning Systems by Labeled-Data-Supervised Fine-Tuning. Applied Energy, 377: 124378

  23. [31]

    Zhang, Z.; Zheng, C.; Wu, Y.; Zhang, B.; Lin, R.; Yu, B.; Liu, D.; Zhou, J.; and Lin, J. 2025 b . The Lessons of Developing Process Reward Models in Mathematical Reasoning. In Findings of the Association for Computational Linguistics: ACL 2025

  24. [32]

    Zheng, C.; Zhang, Z.; Zhang, B.; Lin, R.; Lu, K.; Yu, B.; Liu, D.; Zhou, J.; and Lin, J. 2025. ProcessBench: Identifying Process Errors in Mathematical Reasoning. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics

Pith tools

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