TL;DR for operators

Reliability is often treated as a binary control problem: approve or reject an agent action, preserve or replace a learned component. The evidence here points to a second question that can matter just as much: how strongly should the system intervene, where, and under what conditions?

The clearest technical example comes from continual reinforcement learning. In a 400-million-step SlipperyAnt stress test, CPR recorded zero policy collapses across all 15 seeds under the paper’s main collapse criterion, while Adam and binary-reset baselines experienced collapses. Rather than fully replacing every selected component, CPR changes it by an amount tied to measured utility—preserving more useful learned state while refreshing low-utility state more aggressively.

That result does not mean gentler control is always better. The governance evidence points in the other direction when risk rises: organizations still need hard approval boundaries, provenance, access controls, auditability, and escalation to humans.

For long-running AI systems, reliability therefore depends on avoiding both extremes. Too much disruption can destroy useful capability or destabilize behavior; too much autonomy can create compliance, accountability, and operational risk. The practical principle is calibrated intervention: vary the strength of intervention according to measured utility, risk, or evidence while retaining explicit boundaries where gradual control is not enough.

Reliability depends on intervention strength

An adaptive AI system can deteriorate because intervention is too disruptive. It can also become operationally unsafe because intervention is too weak. Treating control as a yes-or-no decision hides this second dimension.

That distinction becomes unusually visible in Calibrated Partial Resets: Preventing Policy Collapse in Continual Reinforcement Learning.1 The paper studies long-running reinforcement-learning systems that can gradually lose plasticity—the ability to keep adapting as conditions change. Existing reset methods try to restore capacity by identifying low-utility neurons and fully reinitializing them. The intervention is selective, but once a neuron is selected, the reset is abrupt.

Calibrated Partial Resets, or CPR, separates two decisions that binary reset methods combine: which learned components need refreshing, and how much each component should change.

CPR estimates each neuron’s utility from the magnitude of gradients on its incoming weights. The signal is normalized within the layer and smoothed over time. Low-utility neurons are moved further toward fresh initialization; higher-utility neurons are changed less. Their outgoing weights are also reduced proportionally rather than being abruptly zeroed.

The strongest stability result comes from a 400-million-step SlipperyAnt experiment. Under the paper’s primary definition of policy collapse, CPR recorded zero collapses across all 15 random seeds. Adam and the binary-reset baselines experienced collapses. CPR also ended the experiment with a reported final return of 7,494, compared with -1,921 for Adam.

This is more than evidence that reset targeting matters. The ablations indicate that reset magnitude matters independently of target selection.

Very weak resets could fail to restore enough plasticity. Aggressive resets could reduce peak or average performance. The authors report a collapse-preventing range for the maximum reset fraction of 0.01 to 0.05 across SlipperyAnt and SlipperyHumanoid. Performance also deteriorated when the mapping from utility to reset strength became nearly uniform, suggesting that selective targeting contributes beyond generic parameter shrinkage.

That gives calibrated intervention a precise meaning: change the strength of an intervention according to measured system state instead of applying an identical action everywhere.

Smoother control does not mean fewer guardrails

The technical result creates an attractive generalization: perhaps reliable adaptive systems simply need gentler intervention.

The second paper sets a boundary around that interpretation.

From Obligation to Specification: A Survey on Validating EU AI Act Requirements in RE2 studies a completely different system layer. It asks how organizations are incorporating EU AI Act obligations into Requirements Engineering and how practitioners view LLM-based agents that could help draft, map, validate, and trace regulatory requirements.

Its evidence is much weaker for generalization than the CPR experiments. The study combines 10 expert interviews with a survey of only 15 respondents. Recruitment was based on convenience and self-selection, the quantitative analysis is descriptive, and the authors conduct neither significance testing nor causal inference.

Within that sample, however, the pattern is coherent.

Respondents were interested in delegating bounded tasks to AI: 80% selected requirements drafting or structuring, 67% test-case and acceptance-criteria generation, and 60% documentation or traceability. Yet the largest group—53%—preferred a co-pilot configuration with mandatory human approval.

Their trust conditions were also concrete. Human-in-the-loop control was selected by 67%, faithful source citations by 60%, least-privilege access control by 73%, immutable audit logs by 47%, and on-premise or regionally constrained processing by 47%.

The authors translate these observations into four minimum requirements for a proposed AI Act-ready validation agent: end-to-end transparency and auditability, security guardrails by design, human oversight with constrained autonomy, and explicit handling of limited or imperfect evidence.

The paper does not demonstrate that such an agent improves regulatory compliance. It derives design requirements for a future system. That boundary is essential when translating the findings into operating policy.

The shared principle sits above both applications

The papers do not validate each other. Neuron resets provide no empirical evidence about EU AI Act governance, and practitioner preferences about regulatory agents do not explain why CPR works.

Their connection is architectural.

Control layer State being observed Intervention being varied Boundary
Continual learning Neuron utility and training diagnostics Degree of parameter refresh Preserve plasticity without destabilizing learned behavior
Agentic workflow Risk, available evidence, task type, approval conditions Degree of agent autonomy Preserve automation benefits without relinquishing accountability

At the model layer, CPR preserves more learned state when measured utility is high and refreshes more aggressively when utility is low.

At the workflow layer, the governance study points toward preserving more agent freedom where actions are low risk and reviewable while tightening human approval and control where evidence is weak or consequences are greater. Its exploratory high-risk subgroup also reported lower tolerance for agent autonomy, although those differences were not statistically tested.

The common design rule is therefore narrower than “soft controls are better.” A more defensible formulation is:

Preserve useful state, vary intervention according to an observable signal, and retain explicit escalation boundaries.

That formulation accommodates both gradual control and hard stops.

What this changes for AI product architecture

For ML platform teams running long-lived adaptive models, the CPR evidence argues against evaluating training health only through peak task performance. Adam reached a SlipperyAnt peak return of 8,034 before finishing at -1,921. A system that once performed well can still degrade severely later.

Monitoring therefore needs indicators of the adaptation process itself. The CPR paper uses dormant-neuron ratios, linearized-neuron ratios, gradient fluctuations, parameter norms, and collapse events alongside return. Those particular metrics will not transfer to every architecture, but the operating principle does: reliability monitoring should include leading indicators of deteriorating adaptability, not only output quality.

There is also a measurable cost boundary. CPR’s median SlipperyHumanoid runtime was 1.24 hours versus 1.17 for Adam, approximately 6% overhead. For teams considering similar mechanisms, the decision is therefore not simply stability versus instability. It is whether the observed reduction in long-horizon degradation justifies additional implementation complexity, tuning, state tracking, and compute in the target environment.

For product and governance teams deploying agents, the analogous control surface is autonomy. Instead of assigning a single autonomy level to an agent, systems can define permissions by task, risk, evidence quality, reversibility, and access scope.

A requirements-drafting agent, for example, could generate candidate language independently while requiring human approval before that language becomes a controlled requirement. An obligation-mapping agent could propose links only when it can retain faithful source citations. Missing evidence could trigger escalation instead of being silently converted into a confident validation outcome.

This is constrained autonomy: independent action inside a defined operating envelope rather than unrestricted delegation.

A practical control framework

For business systems that learn, adapt, or act repeatedly, Cognaptus would translate the two papers into five design checks:

  1. Identify the state signal. Intervention intensity requires something observable: utility, confidence, evidence completeness, risk class, reversibility, or another defensible indicator.
  2. Separate targeting from intensity. Deciding where intervention is needed does not determine how severe the intervention must be.
  3. Preserve accumulated value where possible. If useful learned state, verified evidence, or validated workflow context can survive an intervention, wholesale replacement requires justification.
  4. Define escalation thresholds explicitly. Gradual intervention cannot replace hard controls for security, authorization, regulatory approval, or high-impact decisions.
  5. Measure post-intervention behavior. The control itself can create instability. Track whether resets, overrides, approvals, or autonomy changes improve the intended reliability metric rather than assuming that intervention is inherently corrective.

These are architecture heuristics, not findings directly tested across both papers.

The boundary of the evidence

CPR provides strong comparative evidence inside its tested computational environments: long training horizons, multiple seeds, matched baselines, ablations, alternative collapse thresholds, and diagnostic measurements all support the reported stability result. Its proposed mechanism remains less certain, and the work does not establish performance across every form of non-stationarity or in deployed continual-learning products.

The EU AI Act study sits at the other end of the evidence spectrum. Its small exploratory sample is valuable for identifying requirements and hypotheses, but its percentages cannot establish industry prevalence. Nor have the proposed closed-loop validation architecture or its four design requirements been experimentally shown to improve compliance outcomes.

The cross-paper inference should therefore remain at the level the evidence permits. These studies independently expose a weakness in binary control logic. One shows experimentally that graded parameter intervention can improve long-horizon learning stability in specific benchmarks. The other shows that practitioners considering regulated agentic workflows want useful automation bounded by differentiated autonomy, evidence, approval, and audit controls.

For AI systems expected to keep operating as their environment, evidence, or internal state changes, reliability engineering needs control policies with more resolution than “leave it alone” and “replace it.” The system needs a way to decide how much change is justified—and a boundary beyond which the decision returns to human or policy control.

Cognaptus: Automate the Present, Incubate the Future.


  1. Luc McCutcheon and Evangelos Chatzaroulas and Saber Fallah (2026). Calibrated Partial Resets: Preventing Policy Collapse in Continual Reinforcement Learning. arXiv:2607.24996. https://arxiv.org/abs/2607.24996 ↩︎

  2. T. Y. Emmy Lai and Sven Giesselbach and Matthias Koch and Héctor Allende-Cid (2026). From Obligation to Specification: A Survey on Validating EU AI Act Requirements in RE. arXiv:2607.21608. https://arxiv.org/abs/2607.21608 ↩︎