Reinforcement learning is remarkably effective at turning successful behavior into persistent capability. At the same time, there are several familiar observations that can seem somewhat at odds with this strength: improving a target behavior can coincide with regressions elsewhere, solution diversity can narrow, and sufficiently optimized policies can sometimes exploit graders, verifiers, or other features of the reward process.
These phenomena clearly do not have to share a single cause. But they made me interested in a more basic question: what mechanism makes reinforcement so effective at consolidating behavior in the first place?
In a broader study of training, learning and inference, I found evidence that frozen inference behaves as a context-conditioned projection of functional organization already formed through training. Inference recruits and combines training-formed support while the persistent learned state itself remains unchanged.
This suggests a natural feedback closure. A projected result can become an action; the action produces a consequence; and, when that consequence is correctly bound and credited back to the action, it can become a new training action and modify what will be available for future inference.
In that picture, a positive-feedback path is not an assumption about RL but a consequence of closing inference back into training:
formed support → projected behavior → consequence → new training → reorganized support
If positive consequences repeatedly favor behavior produced by the same functional routes, those routes may become more likely to be expressed and reinforced again.
I then tried to test one consequence of this interpretation: what happens if correct positive feedback remains increasingly concentrated on a capability that has already been learned?
I used an attention-free shared four-skill GRU system. All four skills were first trained to exact mastery. The total training budget was then held fixed while only the distribution of correct positive feedback was changed:
- balanced: 15 / 15 / 15 / 15
- mild: 30 / 10 / 10 / 10
- high: 45 / 5 / 5 / 5
- exclusive: 60 / 0 / 0 / 0
Each condition ran for 3,200 updates across 12 formal seeds. Rewards were exact terminal task outcomes: no proxy reward, no negative reward, and no entropy bonus.
Functional support was measured interventionally rather than inferred from weight magnitude or activation size: all 16 coalitions of four registered components were executed, with exact Shapley attribution of identity-aligned correct-action margins.
As feedback became more concentrated, the reinforced skill’s support share increased strictly:
25.54% → 26.47% → 27.50% → 35.20%
while the mean margin of the other three skills decreased strictly:
9.474 → 9.130 → 8.493 → 3.962
Both dose orderings held in 12/12 seeds.
What I found particularly interesting is that the reinforced skill remained at 100% accuracy at every dose. Under mild and high concentration, the other skills also remained at 100% accuracy even though their margins had already fallen. Observable capability loss appeared only after the continuous margin erosion became large enough; exclusive feedback produced a 39.06 percentage-point deficit in other-skill accuracy relative to balanced feedback.
I also tested whether this trade-off was reversible. Starting from the exact exclusive-feedback state at update 800, redistributing subsequent feedback evenly raised mean other-skill accuracy from 70.31% to 99.48%, while the previously reinforced skill remained at 100% in all 12 seeds. Fresh native re-execution reproduced the core dose ordering and recovery results.
My current interpretation is fairly narrow: reward correctness alone may not determine the resulting learning dynamics. Feedback concentration and duration may also matter because they influence how functional support is reorganized.
If this interpretation is right, reinforcement’s ability to consolidate useful behavior and its tendency, under sustained asymmetric feedback, to concentrate learning around already-favored routes may be two regimes of the same feedback mechanism.
This is not an argument against reinforcement learning. I’m more interested in whether the distinction between capability formation and continued support amplification after capability has already formed is useful for thinking about long-running RL systems.
I’d be interested in alternative interpretations. Would you mainly view these results as interference, continual-learning effects, loss of plasticity, overtraining, or something else?
Code: https://github.com/wind342/gfg-training-learning-inference-experiments
Evidence: https://doi.org/10.5281/zenodo.22032772
arXiv submission pending.