Information Self-Locking (SeL) in RL Agents
- Information Self-Locking (SeL) is a failure mode where RL agents cease informative querying and belief updating, stalling active reasoning.
- It arises when outcome-only rewards coupled with bidirectional AS and BT dependencies lead to a low-information deadlock.
- The AREW method, using directional critiques, effectively reweights learning signals to restore exploration and belief-tracking.
Information Self-Locking (SeL) is a failure mode in reinforcement learning (RL) for active reasoning with LLM agents in which the agent ceases to ask informative questions and fails to internalize available information, resulting in stagnation of both exploration and learning. This phenomenon arises particularly when training with outcome-only rewards, as the bidirectional coupling of Action-Selection (AS) and Belief-Tracking (BT) capabilities leads to a low-information deadlock from which standard RL algorithms cannot readily recover (Zou et al., 12 Mar 2026).
1. Definition and Manifestation
Let denote the theoretical AS informativeness of a policy , defined as the total Bayesian belief-gain an oracle update would obtain from the agent’s queries, and let quantify the absorbed progress in belief-tracking, i.e., the total positive drift in the agent’s own belief over on-policy rollouts. Information self-locking is formally characterized as the self-locking regime
where both AS and BT are simultaneously deficient. Once the model enters , outcome-only policy-gradient updates become inefficient at restoring either capability.
In practical settings such as preference estimation (PE-G), medical diagnosis (MediQ), and troubleshooting (FloDial), empirical traces demonstrate that, despite increasing episode rewards, the agent’s AS proxy (informative questions) and BT proxy (belief updates) plateau near zero. This manifests as the agent ceasing to ask questions that force trade-offs or elicit novel facts, and failing to improve its belief about the correct answer, even with access to on-policy evidence.
2. Underlying Formal Framework
Active reasoning in LLM agents is modeled as a partially observable Markov decision process (POMDP) with components :
- : fixed latent ground-truth per episode.
- : query-action selected given belief state .
- : deterministic feedback for each query.
- 0: belief-update kernel induced by the LLM's internal state.
- 1: scalar final outcome reward, typically correctness post dialogue.
The trajectory probability under agent parameters 2 factorizes as
3
and the policy-gradient is given by
4
This exposes the axis-aligned contributions of AS and BT, yielding channel-isolated advantages 5 and 6.
3. Mechanism and Theoretical Analysis
Information self-locking arises due to coupled failure modes:
- In the low-BT regime, informative queries provide negligible reward gains because the belief-update kernel 7 fails to internalize new information, causing AS-channel advantages to collapse and query exploration to cease.
- If AS halts informative querying, BT stagnates due to lack of novel evidence, resulting in interaction-insensitive shortcuts.
Theoretical analysis shows that in the self-locking region 8, stepwise improvements in both informativeness and belief-tracking scale linearly with the current low values:
9
0
for step-size 1, constants 2, and where 3 represents the projected policy-gradient increment. Exiting the low-information region thus requires an exponentially large number of RL steps.
4. Solution: AREW (Advantage Reweighting with Directional Critiques)
To overcome self-locking, a lightweight auxiliary training objective is introduced: Advantage Reweighting with Directional Critiques (AREW). The method augments the RL signal with stepwise directional critiques easily obtained by inspecting user feedback or model readout.
At each step 4, two binary critiques are extracted:
- 5: was the query informative?
- 6: did the belief move toward the ground truth?
When one or more of each type of critique appears within a trajectory, the intra-trajectory log-likelihood margin is computed:
7
with 8 and 9, and corresponding gradient
0
where 1 is 2 if 3, 4 if 5, and 0 otherwise.
In RL training, the effective advantage per step is updated as
6
Thereby, positively-critiqued steps receive increased learning signal and negatively-critiqued steps are down-weighted. Theoretical results demonstrate that as long as the accuracy 7 of the critiques exceeds 50%, the expected improvement in 8 becomes proportional to 9, ensuring eventual escape from the self-locking regime.
5. Empirical Evaluation
Experiments span 7 tasks in three domains: Preference Estimation (PE-G, PE-F), Medical Diagnosis (MediQ), and Troubleshooting (FloDial-Easy/Hard). Baselines included zero-shot LLMs (Direct Inference), vanilla PPO, group-based RL variants GRPO and GSPO, using Qwen-2.5-7B-Instruct and LLaMA-3.1-8B-Instruct.
Table: AREW Results Across 28 Settings
| Setting | Vanilla PPO Score | AREW Score | Relative Gain (%) |
|---|---|---|---|
| PE-GS=3 (LLaMA) | 11 | 73 | +62 |
| Other 27 Settings | N/A | Up to +60 | Median +X |
Across 28 settings, AREW outperformed vanilla PPO in 27, with relative improvements up to +62%. Combined AS+BT critiques surpassed AS-only critiques in the majority of evaluated cases. AREW’s improvements in episode reward, AS proxy, and BT proxy persisted across RL algorithms and were robust to up to 40–50% random flips in critique labels.
6. Implications and Design Recommendations
The results underscore that credit-assignment in long-horizon RL for LLMs is intrinsically two-dimensional: both exploration (AS) and evidence-internalization (BT) are required for robust learning. Outcome-only rewards entangle these axes, predisposing models to SeL and associated stagnation.
Directional critiques provide a fine-grained, non-degenerate gradient signal that mitigates the pathological bidirectional coupling without recourse to heavyweight reward shaping or auxiliary discriminators. A practical implementation strategy consists of:
- Instrumenting active-reasoning prompts to output a binary “informative?” flag per query.
- Reading out a confidence score at each belief update.
- Reweighting policy-gradient advantages per step as 0.
It is advisable to maintain tracking proxies for AS and BT, proactively intervene upon stagnation of either channel, and adopt minimal-injection strategies like AREW to preserve exploration–exploitation balance.
7. Future Perspectives
A plausible implication is that future RL-based agent architectures for complex reasoning should explicitly model and disentangle the AS and BT processes, ensuring that learning signals preserve both capacities, thereby avoiding convergence to degenerate low-information regimes. Continued exploration of lightweight, critique-driven credit-assignment mechanisms appears warranted for scalable and data-efficient training in active reasoning domains (Zou et al., 12 Mar 2026).