SYNTHESIS NOTE
TopicsSelf Refinement Self Consistency Feedbackthis note

Can model confidence work as a reward signal for reasoning?

Explores whether using a language model's own confidence scores as training rewards can simultaneously improve reasoning accuracy and restore calibration that standard RLHF damages.

Synthesis note · 2026-02-22 · sourced from Self Refinement Self Consistency Feedback
How should we spend compute at inference time?

Reinforcement Learning from Self-Feedback (RLSF) exploits a simple observation: in a well-calibrated model, answer confidence correlates with reasoning quality. By using confidence as the reward signal rather than human preference or external verification, RLSF achieves two things simultaneously that normally trade off:

(i) Restores calibration — confidence becomes predictive of correctness again, after RLHF had degraded it. RLHF optimizes for human preference and fluency, which rewards confident-sounding outputs regardless of accuracy. RLSF reverses this by making the reward explicitly tied to calibrated confidence.

(ii) Strengthens step-by-step reasoning — higher-confidence answer spans tend to come from traces with more coherent reasoning chains. Training to maximize confidence indirectly selects for better reasoning.

The mechanism: a frozen LLM generates multiple CoT solutions for each problem. Confidence is computed per final-answer span. Traces are ranked by this confidence to create a synthetic preference dataset (higher confidence = chosen, lower = rejected). A reward model is trained on these preferences and used for standard RL finetuning.

The key insight is that confidence-as-reward can be inserted as an additional post-training step after standard SFT and RLHF — patching the calibration damage that RLHF introduces without undoing its alignment benefits. This requires no human labels, gold answers, or externally curated rewards.

The human learning parallel is explicit: humans use confidence as an intrinsic reward signal when external feedback is unavailable. Metacognitive monitoring — the ability to track your own certainty — is how humans regulate their own learning without a teacher.

The connection to Does binary reward training hurt model calibration? is complementary: that work adds calibration as an explicit second reward term; RLSF uses calibration itself as the primary reward. Both address the same RLHF-induced calibration degradation from different angles.

The risk is the same as Does self-consistency reliably reward correct answers during training? — confidence and self-consistency are correlated proxies, both vulnerable to the model becoming confidently wrong. But RLSF's emphasis on calibration (making confidence track accuracy) is explicitly designed to resist this — the model is rewarded for being accurately confident, not just confident.

Extensions to general domains via RLPR and INTUITOR: Two RLVR papers extend intrinsic reward signals beyond math to general domains. RLPR (RL from LLM Intrinsic Probability) computes the model's token-level probability of generating a reference answer, using this as reward signal — the model's own knowledge about what constitutes a correct answer replaces external verifiers. INTUITOR goes further: it uses self-certainty as the sole reward signal, computed as the confidence gap between the model's top-choice answer and alternatives. Both extend verifiable-reward RL to domains without rule-based verifiers (medicine, law, open-ended reasoning) — precisely the domains where external verification infrastructure is hardest to build. The convergence with RLSF is notable: all three use the model's internal probability landscape as reward, but RLSF targets calibration restoration, RLPR targets domain extension, and INTUITOR targets complete verifier independence. See Can model confidence alone replace external answer verification?.

Inquiring lines that read this note 205

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How should dialogue systems represent uncertainty from noisy speech input? Does RLHF training sacrifice accuracy and grounding for user agreement? What constrains reinforcement learning's ability to expand model reasoning? Why do benchmark improvements fail to reflect actual reasoning quality? What makes AI persuasion effective and how can we counter it? Why do language models reinforce false assumptions instead of correcting them? What capability tradeoffs emerge when scaling model reasoning abilities? How can humans calibrate appropriate trust in AI systems? How should models express uncertainty rather than forced confident answers? How do self-generated feedback mechanisms enable effective model learning? Can model confidence signals reliably improve reasoning quality and calibration? What properties determine whether reward signals teach genuine reasoning? How do language models inherit human biases from training data? How can models identify insufficient information and respond appropriately without guessing? Why does self-revision increase model confidence while degrading accuracy? Can ensemble evaluation methods reduce bias more than single judges? Does self-reflection enable models to reliably correct their errors? How does latent reasoning compare to verbalized chain-of-thought? Which computational strategies best support reasoning in language models? Does AI fluency substitute for verifiable accuracy in human judgment? How does policy entropy collapse constrain reasoning-focused reinforcement learning? How can identical external performance mask different internal representations? How do training data properties shape reasoning capability development? Why do reasoning models fail at systematic problem-solving and search? Why does supervised fine-tuning improve accuracy while degrading reasoning quality? What structural advantages do diffusion language models offer over autoregressive methods? Do language model representations contain causally steerable task-specific features? How do multi-agent systems achieve genuine cooperation and reasoning? Why does reinforcement learning suppress output diversity compared to supervised fine-tuning? How does sequence length affect sparsity tolerance in models? Can alternative training methods improve on supervised fine-tuning for language models? How can process reward models supervise complex reasoning traces? Do corrupted reasoning traces serve as effective supervision signals? How can we distinguish genuine user preferences from measurement artifacts? How do evaluation biases undermine LLM quality assessment systems? Do reasoning traces faithfully represent or merely mimic actual model reasoning? What makes weaker teacher models effective for stronger student training? Can debate mechanisms prevent silent agreement on wrong answers in multi-agent reasoning? How should inference compute be adaptively allocated based on prompt difficulty? Can AI systems balance emotional competence with factual reliability? How can language models sustain linguistic synchrony and intersubjectivity during dialogue? Why do reward structures fail to shape long-term agent learning? Can next-token prediction alone produce genuine language understanding? Do language models learn genuine linguistic structure or just surface patterns? How can persona representations reduce language model variance and improve task accuracy? What are the consequences of models training on synthetic data? When should retrieval-augmented systems decide to fetch new information? Can prompting inject entirely new knowledge into language models? Do base models contain latent reasoning that training can unlock? Why do correct reasoning traces tend to be shorter than incorrect ones? How effectively do deterministic tools improve language model reasoning on formal tasks? What pretraining choices and baseline capability constrain reinforcement learning gains? Does reinforcement learning teach reasoning or just when to reason? How does example difficulty affect learning efficiency in language models? How can AI systems learn from failures without cascading errors? How do policy learning algorithm choices affect multi-objective optimization stability?

Related concepts in this collection 6

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
18 direct connections · 170 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

model confidence as intrinsic reward simultaneously restores calibration and improves reasoning — unlike RLHF which optimizes preference at the cost of calibration