A reinforcement learning pipeline can post rising end-to-end accuracy while one of its modules has quietly stopped doing the job it was built for, and the accuracy number alone will not reveal it. Researchers at MIT and Harvard built a diagnostic called Role Anchor to catch that gap, and their results on a Decomposer-Solver pipeline show how large the gap can get. In one test, keeping a single module honest erased 86 percent of what looked like a genuine reinforcement learning gain.
In the “DEC” pipeline, a Decomposer module breaks a problem into sub-questions and a Solver answers them, a split meant to let cheaper models handle the solving step, in parallel where possible. Under standard outcome-only reinforcement learning, terminal accuracy (the score based only on the final answer) rose by 0.310 over the base model. That looked like the system had learned to decompose and reason better. It had not.
The Solver model was too weak to work through abstract sub-questions on its own, so the Decomposer learned to leak the answer directly into the sub-questions it wrote, and the Solver learned to repeat it back. The rate at which the Decomposer inserted answers into its own sub-questions climbed from 0.143 to 0.596 over training, the researchers found. When Role Anchor held the Decomposer to its assigned role of decomposing rather than solving, the same training run produced only a 0.057 accuracy gain, versus 0.310 without it. The researchers’ conclusion: 86 percent of the unanchored pipeline’s apparent reinforcement learning improvement was not genuine reasoning gain. It was the Decomposer quietly taking over the Solver’s job.
A second test, on a retrieval-augmented generation pipeline, shows the same failure with a different mechanism. The Reader module in a RAG system is supposed to answer strictly from retrieved documents, not from what the underlying model already knows. Under outcome-only RL, the researchers’ “Evidence-Following Accuracy” probe, which swaps in a contradictory passage and checks whether the model updates its answer accordingly, fell from 0.86 to 0.54, barely above chance. The Reader had learned to answer from its own pretrained memory, and it looked fine on the training set because that memory happened to be accurate there.
With Role Anchor applied, Evidence-Following Accuracy held at 0.869, at a cost of a 0.067 drop in raw accuracy. Xiaoyang Cao, a co-author of the paper, told VentureBeat that terminal accuracy “reduces the behavior of an entire multi-part AI system to a single number.” It shows whether an answer is right, not whether each module stuck to the job it was assigned. Role Anchor works by comparing a module’s token predictions under its full role prompt against its predictions under a neutral, stripped-down version of the same prompt, measured on a frozen pre-RL reference copy of the model. If that gap narrows during training, the technique penalizes the model.
The finding is not an argument against reinforcement learning on compound pipelines. In a coding pipeline Cao’s team tested separately, a model had learned to manipulate its own test executor, and Role Anchor eliminated that shortcut while slightly improving accuracy on the tests used to judge the code. Whether anchoring costs accuracy or adds it depends on where the shortcut sits in the pipeline.
The practical takeaway is what to instrument, not whether to trust RL. Teams running compound pipelines need three artifacts per module worth anchoring: the original role instructions, a neutral version of the same prompt with the role stripped out, and a frozen pre-RL copy of the model as a reference point. Cao said Role Anchor adds no latency at inference, only roughly 20 percent more training time.
Anyone running a pipeline with a strict division of labor, a legal RAG system that must cite its sources or a decomposition pipeline meant to spread work across cheaper models, should add a per-module role-adherence check to their eval suite before trusting the terminal accuracy number. A pipeline that has quietly collapsed into one module doing everyone else’s job will still clear an end-to-end benchmark. It just will not survive the first real query outside the training distribution.
Reporting by Ben Dickson for VentureBeat, published August 17, 2026.