Search
Mobile menu Mobile menu
AI Strategy , Data science & AI , Med Tech Sep 16, 2026

Why AI Diagnostic Models in Healthcare Keep Fooling Themselves: What Engineering Leaders Must Demand Before Deployment

VECTOR Labs Team
VECTOR Labs Team
Why AI Diagnostic Models in Healthcare Keep Fooling Themselves: What Engineering Leaders Must Demand Before Deployment
Last updated on: Sep 16, 2026

Clinical AI benchmarks are designed to measure how well a model has learned to diagnose. In practice, they frequently measure how well a model has learned to pass a test. The distinction matters enormously in healthcare, where a model that achieves 90% accuracy on a held-out validation set by attending to scan acquisition artefacts rather than pathological anatomy will perform unpredictably the moment it encounters a scanner from a different vendor or a protocol from a different site. Engineering leaders evaluating or commissioning diagnostic AI need to understand the specific mechanisms behind this failure before procurement, not after a regulatory incident forces the question.

Companion piece to our broader work on diagnostic imaging AI. See Building AI for Diagnostic Imaging: What Works, What Breaks, and What Regulators Will Ask for a detailed treatment of why the gap between benchmark and deployment performance is consistently larger for imaging AI than for most other clinical AI categories.

The Anatomical Irrelevance Problem

A classifier trained on MRI or CT scans does not inherently learn to attend to anatomy. It learns to attend to whatever features in the training data correlate with the label. In many clinical datasets, those features include skull shape, background noise patterns, scanner field-of-view boundaries, and patient positioning artefacts. These are not pathological signals, but they are consistent signals, and a neural network will exploit them if they reduce training loss.

The consequences are predictable. A model that has learned to associate a particular background intensity distribution with a positive diagnosis will generalise poorly to any imaging environment where that distribution changes. Because scanner hardware, acquisition protocols, and reconstruction pipelines vary across institutions, this failure mode is nearly guaranteed to appear at external validation.

Recent research on Alzheimer's disease classification from structural MRI makes this concrete. Using Grad-CAM visualisations, Nicolae and Mocanu found that image-only classifiers trained on ADNI data frequently attend to the skull, orbits, and background rather than the medial temporal lobe structures that are clinically implicated in disease progression. Restricting the input to an anatomically constrained crop of the medial temporal lobe improved three-way classification accuracy from 58.7% to 65.1% on the same architecture, without any other modification (Nicolae et al., arXiv 2026). That improvement is not a product of a better model. It is a product of removing the irrelevant signal the model had been using.

Label Leakage in Multimodal Pipelines

Multimodal architectures that fuse imaging with clinical tabular data are increasingly common in diagnostic AI. They are also a reliable source of inflated benchmark performance. The problem arises when the tabular features included in training encode information that was directly used to assign the diagnostic label in the first place. A model that can read a cognitive assessment score in its input features and correlate it with an Alzheimer's diagnosis is not performing imaging-based classification. It is performing a lookup.

This is not a theoretical concern. Nicolae and Mocanu systematically organised clinical variables along what they term a label-leakage spectrum, ranging from features with minimal diagnostic entanglement to cognitive scores that are definitionally entangled with the label. Fusion with cognitive scores produced 87.3% three-way accuracy, which the authors explicitly describe as a leakage-driven upper bound rather than a genuine imaging result. Fusion with regional brain volumes, which are anatomically grounded but not directly used in label assignment, produced 73.0% (Nicolae et al., arXiv 2026). The 14-point gap between those two numbers is not model capability. It is information contamination.

The downstream risk for engineering teams is that a vendor can present multimodal accuracy figures that are technically correct but commercially misleading. Without knowing which tabular features were included and how those features relate to the labelling process, the headline number is uninterpretable.

What Contrastive Training Targets Actually Teach the Encoder

A subtler failure mode appears in contrastive learning architectures, where an image encoder is trained to align its representations with a paired modality. The choice of contrastive target shapes what the image encoder learns, and that effect persists at inference even when the paired modality is removed.

Nicolae and Mocanu demonstrate this directly. An image-only classification head achieved 52.4% accuracy on MCI versus CN classification when the encoder had been aligned to cognitive scores during contrastive training, and 73.8% when the encoder had been aligned to regional brain volumes. No tabular input was used at inference in either case (Nicolae et al., arXiv 2026). The difference is entirely attributable to what the encoder learned to represent during training.

For engineering teams, this means that evaluating a multimodal model by stripping out the tabular input at test time is not a reliable way to assess the quality of the image representations. The contamination from a leaky contrastive target is baked into the encoder weights before inference begins.

The Evaluation Rigour Engineering Leaders Must Enforce

Given these failure modes, the evaluation requirements for clinical AI procurement need to go beyond held-out accuracy on the training distribution. Several specific demands are warranted before any diagnostic model is considered for production deployment.

Explainability as a Validity Check

Saliency maps and attention visualisations should be treated as validity checks, not as post-hoc documentation. If a model's attention is consistently landing on anatomically implausible regions, that is a signal that the accuracy figure was achieved through shortcut learning. Requiring vendors to provide Grad-CAM or equivalent outputs stratified by diagnostic class is a reasonable minimum standard.

External Validation on Prospective Data

Internal validation on a held-out split of the training dataset does not test generalisation across scanner hardware, acquisition protocols, or patient demographics. External validation on prospectively collected data from a different institution is the appropriate standard for any model intended for clinical use. Models that have only been validated on retrospective splits from the same dataset they were trained on should be treated with significant scepticism.

Tabular Feature Auditing in Multimodal Systems

Any multimodal system that includes clinical tabular features requires a documented audit of how those features relate to the labelling process. Features that were used to assign the diagnostic label, or that are definitionally correlated with it, must be excluded from training or clearly accounted for in the accuracy reporting. A vendor that cannot produce this audit has not performed it.

The Procurement Question That Changes the Conversation

Most procurement processes for clinical AI focus on accuracy, regulatory clearance status, and integration compatibility. These are necessary conditions but not sufficient ones. A model can satisfy all three and still be learning the wrong thing.

The question that surfaces the underlying validity is straightforward: what evidence do you have that your model's performance is attributable to clinically relevant features rather than dataset-specific artefacts? A vendor with a well-validated model will have a specific answer involving anatomical grounding, external validation cohorts, and feature attribution analysis. A vendor without one will not.

Asking that question before signing a contract is considerably less expensive than asking it after a regulatory body or a clinical safety review asks it first.

Where Vector Labs Fits

We build and validate clinical AI systems to regulatory standards, with validation structured from the outset rather than retrofitted at submission. In our cardiovascular certification work, we delivered a custom architecture for atrial fibrillation detection from consumer wearable ECG signals that achieved clinical-grade accuracy and received Class 2A medical device certification, with prospective held-out validation and subgroup analysis built into the development protocol. If you are evaluating or building diagnostic AI and want to understand what rigorous validation actually requires, contact us at vector-labs.ai/contacts.

FAQs

What is label leakage and why is it particularly dangerous in multimodal clinical AI?

Label leakage occurs when features used to train a model encode information that was directly used to assign the diagnostic label the model is supposed to predict. In multimodal systems that combine imaging with clinical tabular data, this is especially common because clinical databases contain variables such as cognitive assessment scores that are definitionally entangled with diagnoses like Alzheimer's disease. A model trained on those features will produce high accuracy figures that reflect information retrieval rather than genuine diagnostic inference, and will fail when those features are unavailable or differently distributed in deployment.

How can we tell whether a model is attending to anatomically relevant regions?

Gradient-based attribution methods such as Grad-CAM can visualise which regions of an input image most strongly influence a model's output. When applied systematically across a test set and stratified by diagnostic class, these visualisations reveal whether attention is concentrated on clinically implicated structures or on artefacts such as skull boundaries, scanner backgrounds, or patient positioning. Requiring vendors to provide these outputs as part of submission documentation is a practical minimum standard. Anatomical segmentation tools can be used as a reference to quantify how much attention mass falls within clinically relevant regions versus outside them.

Is FDA clearance sufficient evidence that a diagnostic AI model is valid for our clinical environment?

Regulatory clearance establishes that a model met the evidentiary requirements of a submission at a point in time, on the data provided. It does not guarantee performance on your patient population, your scanner hardware, or your acquisition protocols. Published radiology AI consistently shows material performance degradation at external validation relative to submission-time figures. Clearance should be treated as a necessary condition for procurement consideration, not as a substitute for site-specific validation on prospective data from your own environment.

What specific questions should we ask a vendor during procurement to surface these failure modes?

Ask for the full list of tabular features used in training and a documented explanation of how each relates to the labelling process. Ask for Grad-CAM or equivalent outputs stratified by diagnostic class. Ask whether external validation was performed on prospectively collected data from institutions not represented in the training set, and request the performance figures from that validation separately from internal held-out results. Ask whether the contrastive training targets in any multimodal components were audited for label entanglement. A vendor that cannot answer these questions specifically has not addressed these failure modes.

How should we structure internal validation requirements when building diagnostic AI in-house?

Prospective held-out test sets should be separated from the training distribution before any modelling begins, not after. Subgroup analysis across scanner type, acquisition protocol, and patient demographics should be a required deliverable, not an optional addition. Tabular features in multimodal systems should be audited against the labelling process before training. Explainability outputs should be reviewed by a clinician with domain expertise in the relevant anatomy, not only by the engineering team. These are not additional steps that slow delivery. They are the steps that determine whether the accuracy figure means what it appears to mean.

A team that understands you
With 20+ years of experience in the world's leading consultancy companies, implementing AI and ML projects in industry-specific contexts, we are ready to hear your challenges.
Subscribe to our newsletter for insights and updates on AI and industry trends.
By clicking "Sign me up", you agree to our Privacy Policy.
By clicking the Accept button, you are giving your consent to the use of cookies when accessing this website and utilizing our services. To learn more about how cookies are used and managed, please refer to our Privacy Policy and Cookies Declaration