Update Day Is Where Evaluation Gets Weird

Update day is usually presented as a clean managerial ritual. A model gets retrained. A validation report arrives. The new AUROC is higher, or at least not embarrassing. Everyone is invited to believe that the system has improved.

That belief is comfortable. It is also incomplete.

The paper Learning, Potential, and Retention: An Approach for Evaluating Adaptive AI-Enabled Medical Devices asks a sharper question: when an adaptive AI system changes over time, and the evaluation data also changes over time, what exactly caused the performance change?1 Was it the new model? Was it the new dataset? Or did the model quietly forget something it still needs to know?

That sounds like a technical distinction. In regulated medical AI, it is not. It is the difference between approving a meaningful model update and rubber-stamping a flattering metric produced by a different test population. The scoreboard may be accurate, but it may be answering the wrong question. Scoreboards are polite like that.

The paper’s contribution is not another large model, another clever training trick, or another benchmark victory lap. It proposes a measurement scheme for adaptive AI-enabled medical devices: learning, potential, and retention. Together, these metrics turn model evaluation from a single before-after comparison into an attribution exercise.

The mechanism is the story. Once both the model and the data move, ordinary performance tracking stops telling us whether the device learned, whether the world changed, or whether yesterday’s knowledge was traded away for today’s data.

Adaptive AI Creates Two Moving Targets

Locked medical AI models are designed to behave consistently after deployment. Given the same input, the same model produces the same output. That does not make the model permanently reliable. Clinical populations, scanners, protocols, prevalence patterns, and workflow conditions can change. A frozen model can decay quietly while still looking perfectly disciplined from a software-engineering perspective.

Adaptive AI tries to solve that problem by allowing the model to change in discrete modification steps. The model is not learning continuously from every incoming case. Instead, it is versioned: model at step 0, model at step 1, model at step 2, and so on. Each step can reflect new training data, a known population shift, compatibility with a new acquisition device, or simply enough accumulated evidence to justify an update.

So far, reasonable.

The trouble begins when the evaluation dataset also changes. In real adaptive medical AI, the test set is not necessarily fixed forever, because a fixed test set can itself become stale, unrepresentative, or vulnerable to overfitting. But once the model and test data both change, the usual comparison becomes underidentified:

Before-after observation Possible explanation What ordinary performance misses
Performance improves The model learned useful new patterns Or the new test data became easier
Performance falls The model got worse Or the new test data became harder
Performance stays stable The system is robust Or learning and forgetting cancelled each other out
Performance improves on current data The update is beneficial Or prior populations were forgotten

This is the central attribution problem. Traditional evaluation treats performance as if it has one moving part. Adaptive AI has at least two: the model and the data. In medical devices, there is also a third practical question: whether older populations still matter for the device’s intended use.

A model that adapts quickly may perform well on the newest hospital population while losing performance on older but still clinically relevant populations. A model that preserves old knowledge may remain stable but fail to adapt to a genuinely new population. The paper frames this as the familiar stability-plasticity trade-off, but makes it operational.

Plasticity is the ability to learn new information. Stability is the ability to retain prior knowledge. Business translation: every adaptive update is a trade. The question is whether you know what you paid for.

Three Metrics Turn a Score Into a Diagnosis

The authors define performance as $S(M \mid D)$: the score of model $M$ evaluated on dataset $D$. The exact score can be task-specific. In their case study, it is AUROC for a chest X-ray classification task. The notation matters because the paper’s method deliberately recombines old and new models with old and new datasets.

The three measurements are easiest to understand as three diagnostic questions.

Measurement Formula Diagnostic question What it isolates
Learning $S(M_V \mid D_V) - S(M_{V-1} \mid D_V)$ Did the updated model outperform the previous model on the current dataset? Model change, holding current data fixed
Potential $S(M_{V-1} \mid D_{V-1}) - S(M_{V-1} \mid D_V)$ How much harder or different is the new dataset for the previous model? Dataset shift, holding the previous model fixed
Retention $\sum_{v=0}^{V-1} S(M_V \mid D_v) \cdot W((V-1)-v)$ How well does the current model preserve performance on previous datasets? Knowledge preservation across earlier modification steps

Learning is not the same as observed performance improvement. That is the first trap. If model $M_V$ scores higher than model $M_{V-1}$ when both are evaluated on the new dataset $D_V$, the model has learned something useful for the current population. If the overall reported score improved but learning is near zero, the improvement may have come from the dataset becoming easier rather than from the model becoming better.

Potential measures dataset challenge from the perspective of the previous model. If the previous model performs much worse on the new dataset than on the previous dataset, the new dataset has introduced a challenge that creates room for adaptation. High potential can therefore indicate a meaningful population shift. If that population was expected, fine; if not, someone should stop admiring the dashboard and inspect the data pipeline.

Retention asks whether the updated model still works on earlier datasets. The paper weights older datasets using an exponential decay term, $W(t)=e^{-\lambda t}$, normalized over prior steps, with $\lambda=0.5$ in the case study. This is not a magic constant. It encodes a policy judgment: older data may become less relevant over time, but not necessarily irrelevant.

That last point is easy to understate. In medical AI, old data is not automatically obsolete just because it is old. A prior hospital population, scanner type, or acquisition method may still represent real patients. Forgetting it can be a safety issue, not merely a historical inconvenience.

The Toy Examples Are Not Decoration; They Are Control Logic

The paper uses simple toy scenarios before the case study. They are not filler. Their purpose is to show why ordinary line plots of performance can be actively misleading.

In the learning toy example, two scenarios show the same apparent performance increase, from 0.6 to 0.8. A standard before-after evaluation would treat them as equivalent. But one scenario improves because the dataset changed, while the other improves because the model changed. Same performance curve, different causal story.

In the potential toy example, two cases have similar reported model performance but different dataset challenge. The point is not that potential replaces performance. It gives performance a reference frame: how much adaptation opportunity did the new data actually create?

In the retention toy example, two updated models can look similar on the current dataset while one performs poorly on the earlier dataset. This is the quiet version of failure: the model looks current, modern, updated, and perhaps very proud of itself, but it has lost competence that the deployment context may still require.

The toy examples therefore establish the measurement logic. The case study then asks whether that logic helps interpret more realistic adaptive-update behavior.

The Case Study Tests Population Shift, Not General Medical AI Superiority

The empirical part of the paper uses simulated population shifts from the Medical Imaging Data Resource Center repositories. The task is chest X-ray classification. The architecture is ResNet-18 with ImageNet-pretrained weights. The authors define populations by repository and acquisition method: Open-A1 versus Open-R1, and CR versus DX X-rays.

The experiments cover five modification steps: an initial step 0 and four later updates. Each data partition is balanced: 525 disease-positive and 525 disease-negative patients for training, 75 and 75 for validation, and 150 and 150 for testing. Images from the same patient are not split across partitions. Performance is measured using AUROC, reported as means with 95% confidence intervals across 25 repetitions.

The study design matters because the paper is not claiming that ResNet-18 is the best clinical model, or that these exact results generalize to all adaptive medical devices. The experiments are a controlled demonstration of the evaluation framework.

Experiment Likely purpose What it supports What it does not prove
Single population shift Main evidence under gradual two-population transition Learning can track potential while retention and performance remain stable That all gradual real-world shifts are safe
Single population shift with limited plasticity Sensitivity/stress variant created by freezing all but the final layer Lower plasticity causes learning to fall short of potential while retention stays stable That freezing layers is the only or best way to manage stability
Double population shift Main evidence under more complex three-population transition Performance can rise or fall for reasons that learning, potential, and retention separate That every multi-shift environment follows the same trajectory

This classification is important. The limited-plasticity experiment is not just a second application example. It is closer to a stress test of the measurement system: if the model is deliberately constrained, do the metrics reveal the resulting failure to adapt? They do.

Gradual Shift Shows Healthy Adaptation, Not Just Stable Scores

In the first experiment, the dataset gradually transitions from one population to another: Open-A1 CR at step 0 to Open-A1 DX by step 4. The transition is staged: 100% CR, then 75/25, 49/51, 25/75, and finally 100% DX.

The ordinary performance curve looks calm. Performance and retention remain relatively stable across modification steps. That alone would be mildly reassuring, but not very informative.

The diagnostic value comes from comparing learning and potential. Potential is highest when the second population is first introduced at step 1. That makes sense: the previous model encounters a new population component and therefore faces a new challenge. Learning closely follows potential, which suggests the model is adapting to the new population without sacrificing much prior knowledge.

This is the good-news case. The model has enough plasticity to learn from the changing dataset, and the gradual transition does not visibly break retention. For deployment teams, the practical signal would be: the update process is doing useful work, and the changing environment appears manageable under the current adaptation strategy.

Notice what the paper does not say. It does not say that stable AUROC alone proves safety. It says that stability becomes more meaningful when learning, potential, and retention point to the same benign interpretation.

Limited Plasticity Reveals the Cost of Being Too Stable

The second experiment uses the same single population shift but constrains the model after the initial step by freezing all layers except the final layer. This deliberately reduces plasticity.

Now the performance curve gradually declines over the four modification steps. A shallow reading might say the model is degrading. That is true, but incomplete. The measurement framework explains why.

Learning never reaches potential. In other words, the new data presents adaptation opportunity, but the model cannot fully use it. This is exactly what the experiment was designed to reveal: a model with insufficient plasticity cannot keep up with the changing population.

Retention, meanwhile, remains relatively stable. That is the crucial diagnostic separation. The problem is not primarily catastrophic forgetting. The model did not lose old knowledge in a dramatic way. It simply failed to acquire enough new knowledge.

For business governance, this distinction matters. If the failure is low retention, the remedy might involve replay data, stronger constraints, model-version rollback policies, or more careful intended-use scoping. If the failure is insufficient plasticity, the remedy is different: update the architecture, unfreeze more layers, expand training, or revise the modification protocol. Same disappointing metric, different operational response.

This is where the paper becomes useful beyond medical AI. Good monitoring does not merely detect that something is wrong. It narrows the repair path.

Double Shift Shows Why High Performance Can Be Suspicious

The third experiment is the most interesting because it breaks the comforting habit of equating high performance with successful learning.

The double population shift transitions across three population states: Open-R1 DX, Open-A1 CR, and Open-A1 DX. The sequence is more abrupt than the single-shift case. Step 0 begins with Open-R1 DX. Step 1 mixes Open-R1 DX and Open-A1 CR. Step 2 is entirely Open-A1 CR. Step 3 mixes Open-A1 CR and Open-A1 DX. Step 4 is entirely Open-A1 DX.

The ordinary performance curve increases overall, but inconsistently. A lazy dashboard would still be tempted to celebrate. The diagnostic metrics are less easily impressed.

Potential and learning spike when new populations are introduced, especially at modification steps 1 and 3. They dip when the model receives additional training on previously seen populations, at steps 2 and 4. The paper notes one particularly important pattern: the lowest potential occurs at the same point as the highest performance, modification step 2. That suggests the high performance at that point is influenced more by decreased dataset challenge than by model improvement.

This is the paper’s core warning in miniature. A better score can mean a better model. It can also mean a more convenient test set.

At step 3, the third population introduces greater challenge. Performance decreases slightly while retention increases. That combination would be confusing if viewed through performance alone. Through the proposed framework, it is interpretable: the new test dataset is harder, but training on the harder new data may also strengthen performance on previously seen data.

The lesson is not “performance is useless.” Performance remains necessary. The lesson is that performance is not self-explanatory in adaptive systems. It needs witnesses.

A Practical Dashboard Would Track Attribution, Not Just Accuracy

For medical AI vendors, hospital AI governance teams, and regulators, the paper’s real value is operational. It converts each adaptive update into a structured diagnostic review.

A practical evaluation dashboard inspired by this paper would not ask only, “Did AUROC improve?” It would ask:

Governance question Metric evidence Possible action
Did the update improve the current model? Learning is positive on current evaluation data Proceed, but inspect retention if prior populations remain relevant
Did the environment change? Potential spikes relative to previous steps Review population composition, acquisition devices, site mix, or workflow change
Did the model forget? Retention falls on prior datasets Revisit training design, replay strategy, update scope, and intended-use population
Did the score improve for the wrong reason? Performance rises while learning is weak or potential is low/negative Audit dataset difficulty before claiming improvement
Is the model too conservative? Retention stable but learning persistently below potential Increase plasticity or revise adaptation protocol

This is cheaper than pretending every model update requires philosophical debate. The framework supplies a common language: learning for update benefit, potential for dataset challenge, retention for continuity of competence.

Cognaptus inference: the same logic can support adaptive AI governance outside medical devices. Credit models, fraud detection systems, industrial vision models, logistics forecasts, and AI agents in enterprise workflows all face shifting environments. The specific metrics will change. The attribution problem does not.

Still, medical AI is the cleanest place to see the issue because the stakes force discipline. In advertising technology, a model can drift and everyone calls it optimization. In clinical AI, that sentence has fewer career benefits.

What the Paper Directly Shows, and What Business Teams Should Infer

The distinction between evidence and implication deserves a clean separation.

Layer What belongs here Interpretation
Direct paper result The proposed measurements separate model-update effects, dataset challenge, and retained performance across simulated population shifts The framework is useful for diagnosing adaptive-update behavior under controlled conditions
Strong operational implication Adaptive-model evaluation should include cross-evaluation of old/new models and old/new datasets A single current performance metric is too weak for update governance
Reasonable business inference Monitoring systems can productize this decomposition for regulated AI, enterprise AI, and deployed agentic systems Evaluation intelligence becomes part of the product layer, not just a research afterthought
Still uncertain Performance across other medical tasks, architectures, deployment sites, and real post-market update cycles The metrics need validation and calibration in each context of use

This is the right level of ambition. The paper does not hand business leaders a universal compliance machine. It offers a diagnostic grammar. That is more modest, and more useful.

The Boundary Conditions Are Where Governance Gets Real

Several limitations matter for practical use.

First, the evidence comes from simulated population shifts in a chest X-ray classification setting. The population definitions are controlled through repository and acquisition method. Real hospital drift can be messier: scanner upgrades, site mix, clinical workflow changes, disease prevalence changes, labeling shifts, and treatment changes can arrive together, with no neat labels attached.

Second, the method assumes access to previous model versions and previous evaluation datasets. That may sound obvious, but many organizations do not preserve evaluation assets with enough rigor to support this kind of cross-step testing. If old datasets are poorly documented, legally inaccessible, or no longer representative of the intended population, retention becomes harder to interpret.

Third, retention weighting is a policy decision. The paper uses exponential decay with $\lambda=0.5$, but the right weighting depends on whether older populations still matter. In some contexts, old data should decay quickly. In others, it should remain important because the population remains in scope.

Fourth, AUROC is appropriate for the paper’s demonstration, but deployment risk may require additional metrics: calibration, subgroup performance, threshold-specific sensitivity and specificity, workflow impact, or failure-mode severity. Learning, potential, and retention describe how to compare across model and data versions. They do not eliminate the need to choose clinically meaningful performance measures.

Finally, the paper’s framework diagnoses evaluation ambiguity; it does not by itself decide whether an adaptive update should be approved. That decision still depends on intended use, risk tolerance, clinical context, regulatory commitments, and the cost of false confidence.

That is not a weakness. A thermometer does not choose the treatment. It tells you whether the fever is real.

The Real Shift Is From Model Scoring to Model Forensics

Adaptive AI will keep moving into domains where locked models feel too brittle and continuous learning feels too dangerous. Medical devices make this tension explicit, but the same structure appears wherever AI systems are periodically updated under changing conditions.

The paper’s useful move is to stop treating performance as a single number with a single cause. Performance is a mixture. Learning asks what the model update contributed. Potential asks what the new data demanded. Retention asks what the model preserved.

That triad does not make adaptive AI automatically safe. It makes adaptive AI more inspectable. For business use, that is the real prize: not a prettier score, but a better diagnosis of why the score changed.

A higher number can still be good news. It just has to survive cross-examination.

Cognaptus: Automate the Present, Incubate the Future.


  1. Alexis Burgon, Berkman Sahiner, Nicholas A. Petrick, Gene Pennello, and Ravi K. Samala, “Learning, Potential, and Retention: An Approach for Evaluating Adaptive AI-Enabled Medical Devices,” arXiv:2604.04878, 2026. https://arxiv.org/abs/2604.04878 ↩︎