Research
ReFIne: A Framework for Trustworthy Large Reasoning Models with Reliability, Faithfulness, and Interpretability
Overview Research area: Trustworthy machine learning for large reasoning models (LRMs) — specifically natural language processing / LLM chain-of-thought training. Technical level: Intermediate. The pa
- arXiv
- 2510.09062
- Published
- 2025-10-10
- Authors
- Chung-En Sun, Ge Yan, Akshay Kulkarni, Tsui-Wei Weng
AI summary
Overview
Research area: Trustworthy machine learning for large reasoning models (LRMs) — specifically natural language processing / LLM chain-of-thought training.
Technical level: Intermediate. The paper uses standard LLM training machinery (supervised fine-tuning, GRPO, reward shaping) and evaluation metrics (AUROC, ECE), so readers should be comfortable with reinforcement-learning-from-verifiable-rewards terminology.
Scope: The paper proposes ReFIne, a two-stage training framework that trains Qwen3 models at 1.7B, 4B, and 8B scales to produce reasoning traces that are simultaneously more interpretable, more faithful, and more reliable, while keeping accuracy comparable and reasoning length slightly shorter.
What This Paper Is About
Long chain-of-thought reasoning models have been optimized almost entirely for answer accuracy and token efficiency, leaving aside whether their traces can actually be trusted by a human reader. The authors argue that a usable reasoning system must satisfy three properties — interpretability (clear, structured traces), faithfulness (the written trace reflects what really drove the answer), and reliability (the model states a confidence score that tracks whether it is actually right). ReFIne is a training pipeline designed to instill all three at once, rather than trading them off against accuracy.
Key Contributions
-
A concrete operational definition of trustworthy reasoning for LRMs along three dimensions — interpretability, faithfulness, and reliability — used as the explicit design target for the training framework.
-
ReFIne, a two-stage training framework: supervised fine-tuning on a tag-structured reasoning format (a cold start), followed by GRPO with a four-component reward covering correctness, tag structure, cross-section references, and confidence calibration.
-
An empirical demonstration across four benchmarks and three model sizes showing interpretability +44.0%, faithfulness +18.8%, and reliability +42.4% relative to matched "Plain" baselines, with similar accuracy and slightly better reasoning efficiency (1.16×).
-
A public release of the code at the Trustworthy-ML-Lab repository (Training_Trustworthy_LRM_with_Refine), along with an extensive appendix covering cross-family judging, human studies, ablations, and generalization to non-Qwen architectures and non-mathematical domains.
Main Findings
-
Interpretability gains: ReFIne achieves near-perfect structural compliance, with rates exceeding 99.7% on average that all required sections appear exactly once and in canonical order. In a pairwise readability comparison judged by QwQ-32B, ReFIne is judged "clearly better" or "slightly better" than Plain in every dataset/model-size setting. Overall interpretability improvement is reported as +44.0%.
-
Cross-section referencing is driven by GRPO: The percentage of
<think>sections that explicitly reference<understanding>/<facts>/<plan>jumps dramatically with GRPO. For example, on GSM8K at 1.7B, ReFIne reaches 99.86 / 99.86 / 99.44 versus 27.98 / 65.46 / 53.05 for the SFT-only ablation (ReFIne w/o GRPO). -
Faithfulness gains (+18.8%): On disclosure faithfulness φ (the rate at which a model explicitly verbalizes a hint it actually used), ReFIne outperforms Plain across all datasets and sizes — for instance 0.983 ± 0.010 vs 0.717 ± 0.057 on GSM8K at 4B. ReFIne also achieves 1.35× larger accuracy gains after being hinted and is 1.28× more likely to verbalize the hint. Commitment faithfulness (whether
<think>strictly follows<understanding>/<facts>/<plan>) is high for both models, with ReFIne consistently at or near the top. -
Reliability gains (+42.4%): ReFIne produces an explicit confidence score in essentially all traces (100.0% on AIME-2024, MATH-500, and GSM8K, and 99.4–99.8% on GPQA-Diamond), while Plain frequently omits one — for example only 5.9% ± 6.0% on AIME-2024 at 1.7B and 5.2% ± 3.6% at 8B. ReFIne attains AUROC > 0.7 on AIME-2024 and MATH-500 and surpasses Plain on GPQA-Diamond and GSM8K. Calibration is better (lower ECE) across datasets, with especially large gains on MATH-500 and GSM8K.
-
Accuracy is broadly comparable: The authors report that ReFIne is broadly comparable to Plain, with the largest gap on AIME-2024, negligible differences on MATH-500 and GSM8K, and a slight advantage for ReFIne on GPQA-Diamond.
-
Efficiency emerges as a side effect: ReFIne generally produces shorter traces at the 4B and 8B scales, a gain the authors say was not an explicit training objective but emerges from the structured format.
-
Appendix analyses reinforce the main results: A cross-family judge (Claude Opus) and a human study expanded to all four benchmarks agree with the same direction; corrupting
<understanding>/<facts>/<plan>sharply reduces accuracy; ReFIne transfers to a non-Qwen architecture; and gains persist on harder competition problems (AIME-2025, HMMT) and non-mathematical domains (CommonsenseQA, ARC-Challenge, CodeMMLU).
Methodology in Plain English
The approach has two stages.
Stage one — supervised fine-tuning as a cold start. The authors build templates that force a model to reason in separate functional phases: restating the problem (<understanding>), listing all variables and constraints (<facts>), writing a stepwise plan (<plan>), doing the detailed derivation (<think>), giving the answer (<final_answer>), and finally auditing its own solution with a 0–10 confidence score (<self_assessment>). They prompt Qwen3-8B sequentially through these blocks — using non-thinking mode for everything except the main derivation, where thinking mode is enabled — over 10,000 problems from the Open-R1-Math dataset. They discard examples with incorrect final answers, leaving roughly 8,000 traces. Because correctness filtering skews the confidence scores toward high values, they apply histogram specification to remap scores toward a target distribution that mixes the empirical distribution with the uniform distribution over 0–10 (mixing weight α = 0.9), preserving rank order. They then fine-tune Qwen3 at 1.7B, 4B, and 8B on this corpus with a maximum length of 20k tokens.
Stage two — GRPO with a shaped reward. They select 2,000 problems for reinforcement learning: 1,400 that Qwen3-8B failed to solve correctly plus 600 randomly sampled from Open-R1-Math while excluding the SFT set. This bias toward harder problems limits trivially solvable cases and helps prevent overconfidence. The reward combines four equally weighted components (each 0.25): correctness from a task-specific answer checker; tag-generation structure (every expected tag appears exactly once and in order); cross-section references (fraction of <understanding>, <facts>, <plan> literals appearing inside <think>); and confidence estimation, computed as 1 minus the squared difference between the stated probability (score divided by 10) and whether the answer was actually correct, with a penalty λ = 1 for omitting the score. GRPO uses a KL penalty of 0 and generates 4 trajectories per problem.
Evaluation. The matched Plain baselines use identical data budgets and model sizes but SFT on plain reasoning traces (only <think> plus a final answer paragraph) and GRPO with correctness as the sole reward. Evaluation covers AIME-2024, GPQA-Diamond, MATH-500, and GSM8K, each run 10 times with mean and standard deviation, judged along five dimensions: interpretability, faithfulness, reliability, accuracy, and efficiency. QwQ-32B serves as the automatic judge for readability and commitment faithfulness.
Why This Matters
Impact on research. The paper reframes what "progress" in reasoning models means. Instead of a single accuracy number, it proposes a three-axis target and shows that training can move all three simultaneously without sacrificing task performance — an important counterpoint to the assumption that structure, honesty, and calibration must be traded against accuracy.
Real-world applications:
- AI-assisted tutoring and homework help — structured traces with confidence scores let students and teachers see where an answer came from and when to double-check it.
- Scientific and engineering workflows — self-assessed confidence lets downstream users triage which model outputs warrant verification before acting on them.
- High-stakes decision support (medicine, law, finance) — calibrated "confidence: 3/10" signals are far more useful to a human reviewer than an unqualified fluent derivation.
- Auditing and compliance — explicit
<facts>sections and cross-section references make it easier to establish which premises a model relied on, supporting traceability requirements.
Industry relevance. Reliability calibration and faithful disclosure of decisive cues are directly relevant to deployment risk management. A model that reliably states when it is unsure reduces the cost of human oversight, and a model that discloses when it exploited a hint (rather than silently using it) is easier to trust in regulated settings. The reported 1.16× reasoning efficiency improvement at no accuracy cost is an additional operational benefit, since shorter traces reduce inference cost.
Future Directions
-
Determining which reward components matter most. The paper points to reward-component ablations in Appendix F, but the broader question of how to set the relative weights (all fixed at 0.25 here) and how sensitive results are to them remains open.
-
Pushing the framework beyond math. Generalization is tested on CommonsenseQA, ARC-Challenge, and CodeMMLU in the appendix, but extending trustworthy-reasoning training to open-ended domains without verifiable final answers is unresolved.
-
Closing the remaining calibration gap. Reported ECE on AIME-2024 and GPQA-Diamond is still relatively high (e.g., 0.305 and 0.279 at 1.7B), so improving calibration on out-of-distribution, very hard problems is a clear next step.
-
Understanding the causal role of structure. The appendix shows that corrupting
<understanding>/<facts>/<plan>sharply reduces accuracy and that confidence drops when correct traces are artificially degraded, but a fuller mechanistic account of why the structured format both improves trustworthiness and shortens reasoning would strengthen the framework.
Target Audience
Researchers and practitioners working on reasoning-model training, RLHF/GRPO pipelines, and LLM evaluation — particularly those concerned with interpretability, chain-of-thought faithfulness, and confidence calibration. It is also relevant to applied teams deploying reasoning models in settings where human reviewers must judge when to trust an answer, and to safety researchers interested in how training objectives shape what a model discloses about its own decision process.
Authors’ abstract
Recent advances in long chain-of-thought (CoT) reasoning have largely prioritized answer accuracy and token efficiency, while overlooking aspects critical to trustworthiness. We argue that usable reasoning systems must be trustworthy, characterized by three properties: interpretability, faithfulness, and reliability. To this end, we propose ReFIne, a new training framework that integrates supervised fine-tuning with GRPO to encourage models to: (i) improve interpretability by producing structured, tag-based traces with high-level planning that are easier for humans to follow; (ii) enhance faithfulness by explicitly disclosing the decisive information guiding each solution, with consistent cross-section references; and (iii) promote reliability by providing self-assessments of both the derivation's soundness and the confidence of the final answer. We apply ReFIne to the Qwen3 models at multiple scales (1.7B/4B/8B) and evaluate across mathematical benchmarks of varying difficulty. Our experimental results show that ReFIne models generate clearer and better-structured reasoning traces (interpretability +44.0%), more faithfully expose their underlying decision process (faithfulness +18.8%), and offer informative confidence estimates (reliability +42.4%). These findings highlight an overlooked but important direction: reasoning models should be optimized not only for accuracy, but also for broader dimensions of trustworthiness. Our code is available at: https://github.com/Trustworthy-ML-Lab/Training_Trustworthy_LRM_with_Refine