Papers
Topics
Authors
Recent
Search
2000 character limit reached

Confidence-Orchestrated Self-Evolution against Uncertain LLM Feedback

Published 27 May 2026 in cs.AI | (2605.28010v1)

Abstract: Self-evolving LLMs learn by generating their own training tasks and solutions, reducing reliance on human-curated supervision. However, in many reasoning domains, the model must also validate generated tasks and judge generated answers to obtain training signals. This creates a training-signal challenge: erroneous self-judgments become erroneous gradient updates. Existing approaches either rely on external verifiers, which limits generality, or treat noisy self-generated feedback as supervision. We propose COSE (Confidence-Orchestrated Self-Evolution), which uses the LLM's intrinsic confidence as a lightweight uncertainty signal to modulate learning. COSE introduces confidence-weighted PPO updates and confidence-prioritized replay. Across 19 held-out benchmarks and four Qwen/Llama backbones (0.6B--4B), COSE consistently improves over base models and achieves the best average performance in general reasoning and mathematics, while remaining competitive on code. Code and data are available at https://anonymous.4open.science/r/COSE_-B5C2.

Summary

  • The paper introduces COSE, a framework that scales the impact of self-generated feedback using intrinsic confidence scores derived from token-level entropy.
  • It employs a four-role architecture (Proposer, Validator, Solver, Judge) to filter and prioritize feedback, ensuring reliable policy optimization via confidence-weighted PPO.
  • Experiments show that COSE enhances stability and performance across reasoning, mathematics, and code generation tasks, particularly for weaker model backbones.

Confidence-Orchestrated Self-Evolution: A Confidence-Modulated Framework for Self-Evolving LLMs

Problem Formulation and Challenges

Self-evolving LLMs automate supervision by generating their own tasks and feedback, removing the dependency on expensive human annotation in reasoning, mathematics, and code. However, as shown in "Confidence-Orchestrated Self-Evolution against Uncertain LLM Feedback" (2605.28010), a critical bottleneck for such approaches is the reliance on noisy model-generated feedback; validators and judges (implemented as LLM-in-the-loop modules) are imperfect, especially on challenging reasoning tasks. Erroneous self-judgments translate into erroneous gradient updates, leading to policy drift and amplification of flawed behaviors throughout sequential self-evolution. Traditional self-evolution protocols—such as MAE and R-Zero—use LLM feedback at face value, treating all accepted feedback as equally reliable, which is suboptimal when the feedback is both noisy and hard to certify.

The COSE Framework

COSE introduces a confidence-aware mechanism that modulates the impact of self-generated feedback according to the LLM's intrinsic confidence score computed from token-level entropy statistics. The system orchestrates four roles using a shared backbone LLM: Proposer, Validator, Solver, and Judge. Figure 1

Figure 1: The COSE architecture prompts a single LLM πθ\pi_\theta to act as Proposer, Validator, Solver, and Judge, integrating confidence signals at the Validator and Judge stages to regulate training via confidence-weighted PPO and prioritized replay.

  • The Proposer synthesizes candidate questions, which are scored and filtered by the Validator.
  • Filtered questions are added to a replay buffer and sampled for solving.
  • The Solver generates answers to these questions, and the Judge rates correctness.
  • Validator and Judge supply both a normalized quality/correctness score and a sequence-level confidence estimate cc (derived by aggregating normalized per-token entropy over the output).

COSE's central principle is that feedback with higher intrinsic confidence receives proportionally more influence in policy optimization; low-confidence feedback has its gradient scaled down, mitigating amplification of errors due to judge/validator mistakes.

Confidence Estimation and Training Control

Confidence is estimated using normalized entropy over the validation/judge token distributions. For a prediction at token tt with softmax output PtP_t over vocabulary V\mathcal{V}, token confidence is:

ct=1H(Pt)logVc_t = 1 - \frac{H(P_t)}{\log |\mathcal{V}|}

Sequence-level confidence cseqc_{\mathrm{seq}} is the average over tokens. This approach is robust to calibration defects and agnostic to the judge's accuracy, providing an intrinsic uncertainty signal widely studied in model selectivity and sample trustworthiness.

During training:

  • Confidence-weighted PPO: PPO gradients for the Proposer and Solver are scaled by confidence-weighted terms, e.g., wS(q,a)=clip(v(q)cV(q)cJ(q,a),0.1,1.0)w_S(q, a) = \text{clip}(v(q)c_V(q) c_J(q, a), 0.1, 1.0). This strict regulation prevents large, misdirected updates due to uncertain or noisy feedback and preserves exploration by flooring at $0.1$.
  • Confidence-prioritized replay: The replay buffer is preferentially sampled according to the joint validator confidence and intermediate solver success (v(q)cV(q)max(4p(q)(1p(q)),0.1)v(q) c_V(q)\,\max(4p(q)(1-p(q)), 0.1)), focusing training on learnable, informative examples validated with higher confidence. Figure 2

    Figure 2: Example gradient contributions visualizing how high-confidence, low-confidence, and misjudged feedback are weighted in PPO; updates from uncertain feedback receive diminished strength.

Experimental Results

COSE is benchmarked across 19 held-out datasets including MMLU, GPQA, BBH, ARC-Challenge, GSM8K, MATH, Minerva, Olympiad-Bench, and code generation suites. Evaluation spans four model scales (Qwen/LLama backbones, 0.6B–4B parameters).

General Reasoning: On all four model scales, COSE yields the highest average score on general reasoning, with especially pronounced gains on smaller/weaker backbones—where naive self-evolution quickly amplifies errors due to noisy validators/judges. Gains persist, albeit reduced, even in saturated large-model regimes. Figure 3

Figure 3: Training dynamics on Qwen3-0.6B: confidence control yields monotonic or plateaued performance, highlighting enhanced stability compared to standard self-evolution.

Mathematical Reasoning: COSE outperforms all baselines with significant deltas on challenging math benchmarks, particularly for less capable backbones. On GSM8K, MATH, and Olympiad-Bench, the margin over MAE/R-Zero is largest precisely where judge reliability is lowest. Notably, for "hard" problems with high judge uncertainty, COSE's advantage widens, confirming that per-sample noise control is essential for stable self-evolution. Figure 4

Figure 4: Llama-3.2-3B per-benchmark curves demonstrate that COSE stabilizes training even in the presence of protocol-induced oscillations and bottlenecks from highly noisy feedback.

Code Generation: On execution-verifiable code tasks, where AZR and similar methods have access to precise reward signals, COSE retains competitive performance and never regresses substantially. This confirms that confidence modulation does not harm performance in domains with high-fidelity reward signals. Figure 5

Figure 5: Qwen3-4B per-benchmark results illustrate that on saturated tasks, COSE does not cause regressions and maintains incremental gains on reasoning benchmarks with sustained judge noise.

Ablation and Hyperparameter Analysis

Disabling confidence-weighted updates causes large and systematic drops on math/logic tasks, especially for weaker models. Replay priority also contributes, but less so than per-sample gradient modulation. Batch size and choice of confidence estimator (entropy, margin, logit) yield only secondary effects, confirming the generality of the framework.

Implications and Theoretical Significance

COSE addresses a fundamental limitation of naive self-evolution: the unmoderated amplification of model biases and feedback failures via trust in self-generated supervision. By integrating confidence-based weighting, COSE provides a robust mechanism to dampen policy shifts due to unreliable self-feedback—especially crucial outside domains with programmatic or executable verifiers.

Practically, this enables more aggressive use of self-evolving frameworks in reasoning and mathematics, extending the feasible benchmarking zone beyond code and retrieval. The mechanism is agnostic to backbone, scalable to larger models, and, as shown, compatible with reinforcement learning control variants such as PPO. The comprehensive experiments articulate that the value of trust control over feedback scales with both the difficulty of the learning domain and the model's own accuracy regime.

Theoretically, COSE's approach suggests a pathway where confidence measurements (even when not perfectly calibrated) may serve as an effective form of intrinsic reward shaping or per-example trust control, complementing broader research on selective prediction and LLM self-verification (cf. [geng2024survey], [stechly2024selfverification]).

Limitations and Future Directions

Confidence is a heuristic, not a guarantee: high-confidence LLM feedback can still be incorrect, especially in adversarial or OOD cases. COSE thus does not replace the need for external, human, or environment-based verification, particularly in high-stakes or safety-critical domains. Further, COSE assumes access to token-level logits or probability distributions; for true API-black-box LLMs, alternative (possibly weaker) confidence proxies are needed.

Application to larger, highly capable backbones—and systematic study of behaviors under extreme curriculum drift or over long self-evolution training horizons—remains an open area. Combining COSE with stronger, possibly external, measures of semantic uncertainty or error detection is a natural extension.

Conclusion

COSE advances self-evolving LLM training by formalizing confidence-based trust control in the face of uncertain model-generated feedback. It consistently raises reasoning and mathematics benchmark performance while preserving stability in executable verification regimes. The approach is well-supported by quantitative improvements in weak-to-moderate backbones and demonstrates robustness across experiment settings. COSE sets the stage for future research on more nuanced signals for feedback reliability, integration with external verifiers, and deployment in open-domain, real-world self-improving AI systems.


Reference: "Confidence-Orchestrated Self-Evolution against Uncertain LLM Feedback" (2605.28010)

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 2 likes about this paper.