CTCT·Academy
Lv 1
Curriculum · Pillar 5 · Advanced Interpretation & Imaging Science

31. Artificial Intelligence in CT

In this chapter · 6 sections
  1. Detection Models
  2. Segmentation Models
  3. Foundation Models
  4. Validation Science
  5. Failure Analysis
  6. Clinical Integration

🎯 Learning objectives

  • Explain the computational anatomy of a convolutional detection model — convolution, receptive field, pooling, the softmax probability vector, and the cross-entropy objective — and articulate why a CT volume's three-dimensional, low-contrast, class-imbalanced structure makes detection a fundamentally probabilistic rather than deterministic task.
  • Distinguish semantic segmentation from detection at the level of the loss function and output, and use the Dice coefficient and the intersection-over-union (Jaccard index) to quantify spatial agreement, deriving their algebraic relationship and explaining why Dice is preferred when the target organ or lesion is small relative to the background.
  • Describe the transformer self-attention mechanism and the self-supervised pre-training paradigm that underlies foundation models, and reason about why a single pre-trained representation can be adapted to many CT tasks while still inheriting the biases of its pre-training corpus.
  • Derive, from Bayes' theorem in odds form, why the positive and negative predictive values of any CT AI model depend on disease prevalence even when sensitivity and specificity are fixed, and compute predictive values and likelihood ratios for a worked clinical scenario.
  • Interpret the receiver operating characteristic curve and the area under it as a threshold-independent summary, compute the signal-detection index d-prime, and explain the specific ways in which a high AUC can coexist with clinically unsafe behavior at the operating threshold.
  • Diagnose the principal failure modes of deployed CT AI — dataset (covariate and label) shift, shortcut learning, miscalibration, adversarial and out-of-distribution fragility, and automation bias — and connect each to a measurable degradation in real-world performance.
  • Appraise an AI diagnostic-accuracy or trial publication against the CLAIM, STARD-AI, and CONSORT-AI reporting standards, identifying spectrum bias, the absence of prospective external validation, and inadequate ground-truth definition.
  • Construct a defensible clinical-integration strategy that specifies the model's role (triage, concurrent aid, or autonomous read), the human–AI division of labor, the regulatory and monitoring framework, and the mechanism for detecting silent performance drift after deployment.

01Detection Models

Detection and classification models answer a deceptively simple question — is a particular finding present, and if localized, where — yet the machinery required to answer it on a CT volume is anything but simple, and understanding that machinery is the prerequisite for judging when its output can be trusted. The dominant architecture remains the convolutional neural network, whose defining operation is the discrete convolution of a small learned kernel ww across the image. For a two-dimensional slice, a feature map value is yij=σ ⁣(b+mnwmnxi+m,j+n)y_{ij} = \sigma\!\left(b + \sum_{m}\sum_{n} w_{mn}\, x_{i+m,\,j+n}\right), where σ\sigma is a nonlinearity such as the rectified linear unit ReLU(z)=max(0,z)\mathrm{ReLU}(z)=\max(0,z). Three properties of this operation are doing the clinical work. It is translation-equivariant, so a hyperdense hemorrhage is recognized wherever it appears; it shares weights, so the number of learned parameters is small relative to the number of pixels and the model generalizes rather than memorizing pixel coordinates; and stacked convolutions with intervening pooling expand the receptive field, the region of the input that influences one deep activation, so that early layers encode edges and Hounsfield gradients while deep layers encode whole structures such as a lacuna of low attenuation or a rounded nodule. CT adds the third spatial dimension, and clinically serious models operate on the volume — either as true 3D convolutions or as 2.5D stacks of adjacent slices — because a pulmonary nodule and a vessel-on-end are separable only through-plane.

The network terminates in a probability, not a verdict. For binary detection the final logit zz is squashed by the logistic function p=1/(1+ez)p = 1/(1+e^{-z}); for mutually exclusive categories the softmax pk=ezk/jezjp_k = e^{z_k}/\sum_j e^{z_j} produces a normalized distribution over classes. Training minimizes the cross-entropy between this predicted distribution and the labels, L=kyklogpk\mathcal{L} = -\sum_k y_k \log p_k, by gradient descent with backpropagation. The continuous, calibratable nature of pp is the conceptual heart of the matter: a detection model does not find a bleed, it estimates the posterior probability of a bleed given the pixels, and the binary alert seen by the clinician is the result of thresholding that probability at an operating point chosen to trade sensitivity against specificity. Moving the threshold trades the two error types continuously and is the lever by which a triage tool is tuned for near-total sensitivity at the cost of false alarms.

CT detection is also a hard class-imbalance problem: positive voxels — an early infarct, a subsegmental embolus, a few millimetres of subdural blood — are vanishingly rare against the background of normal anatomy, so a naive model can score high accuracy by predicting normal and detecting nothing. This is why detection systems are trained with imbalance-aware objectives (focal loss, hard-negative mining) and why accuracy is a forbidden metric in this domain. The clinical validity of these systems is genuine but bounded: Titano and colleagues showed that a 3D CNN could triage head CT for critical findings and shorten time to read in a simulated workflow, and Chilamkurthy and colleagues demonstrated detection of multiple critical head-CT findings at radiologist-comparable accuracy on large retrospective cohorts. The recurring lesson, developed throughout this chapter, is that these are probabilistic estimators whose reported accuracy is conditional on the spectrum of disease and the acquisition characteristics of the data on which they were built.

02Segmentation Models

Segmentation models answer a different and more demanding question than detection: rather than emitting one label per image, they emit a label for every voxel, partitioning the volume into anatomically or pathologically meaningful regions — delineating an infarct, contouring the liver and spleen for volumetry, or outlining a tumor for response assessment. Architecturally the field is dominated by the encoder–decoder with skip connections introduced by the U-Net and, in three dimensions, by the self-configuring nnU-Net of Isensee and colleagues, which automatically adapts patch size, resolution, and normalization to the dataset and remains a benchmark-topping default. The encoder progressively contracts the volume into a compact semantic representation through convolution and downsampling; the decoder symmetrically upsamples it back to full resolution; and the skip connections splice high-resolution early-layer features into the decoder so that the network recovers both what a structure is and where its boundary lies to the voxel. TotalSegmentator (Wasserthal and colleagues) exemplified the maturation of this paradigm, producing robust automated segmentation of more than one hundred anatomic structures across heterogeneous clinical CT, which is precisely the substrate that turns the quantitative imaging of the preceding chapter — organ volumetry, body-composition analysis, opportunistic screening — into a one-click reality.

The defining feature of segmentation, and the source of its rigor, is that correctness is measured by spatial overlap rather than by a single right-or-wrong label. The dominant metric is the Dice similarity coefficient, Dice=2ABA+B\mathrm{Dice} = \dfrac{2|A\cap B|}{|A|+|B|}, where AA is the predicted region and BB the reference; it ranges from 00 (no overlap) to 11 (perfect). The closely related Jaccard index, or intersection-over-union, is IoU=ABAB\mathrm{IoU} = \dfrac{|A\cap B|}{|A\cup B|}, and the two are deterministically related by Dice=2IoU1+IoU\mathrm{Dice} = \dfrac{2\,\mathrm{IoU}}{1+\mathrm{IoU}}, so Dice always meets or exceeds IoU and the choice between them is largely conventional. The deeper point is why overlap metrics, and a Dice-based loss LDice=12ipigiipi+igi\mathcal{L}_{\mathrm{Dice}} = 1 - \dfrac{2\sum_i p_i g_i}{\sum_i p_i + \sum_i g_i}, are preferred over voxelwise cross-entropy for small targets: a 2 mL lesion in a 4000 mL field is so outnumbered that a cross-entropy-trained network is rewarded for ignoring it, whereas the Dice objective is scale-invariant to the background and forces the network to capture the small foreground. This is the segmentation analogue of the detection class-imbalance problem and explains the field's metric conventions.

Two cautions complete the picture. First, Dice is dominated by region interior and is comparatively insensitive to boundary error; for tasks where the margin is clinically decisive — a tumor abutting a vessel, the surgical edge — boundary-aware metrics such as the Hausdorff distance, the maximum of the closest-point distances between surfaces, are reported alongside Dice. Second, a segmentation is only as good as the human contours used to train and test it, and inter-observer variability in manual segmentation sets a hard ceiling: when expert radiologists disagree on a boundary, an algorithm that matches one of them perfectly will appear to err against the other, so the achievable Dice is bounded by the reproducibility of the reference standard itself.

03Foundation Models

Foundation models represent a paradigm shift from the task-specific networks of the preceding sections to large, generally pre-trained representations that are subsequently adapted to many downstream tasks, and understanding them requires understanding two ideas: the attention mechanism and self-supervised pre-training. The architectural substrate is the transformer, whose central operation, self-attention, computes for each element a weighted combination of all other elements, Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V) = \mathrm{softmax}\!\left(\dfrac{QK^{\top}}{\sqrt{d_k}}\right)V, where queries QQ, keys KK, and values VV are learned projections of the input and dk\sqrt{d_k} stabilizes the scale. Applied to imaging by the vision transformer, which tokenizes an image into patches, attention lets every patch directly attend to every other patch, capturing long-range spatial dependencies — the relationship between a mediastinal mass and a distant pleural effusion — that a convolution, with its local receptive field, reaches only after many layers. This global context is the mechanistic appeal of transformers for whole-volume CT interpretation.

The second idea is what makes these models foundational. Rather than learning from scarce, expensively annotated labels, they are pre-trained by self-supervision on enormous unlabeled corpora using pretext objectives — masking image patches or text tokens and predicting the missing content, or contrastive learning that pulls matched image–report pairs together in an embedding space and pushes mismatched pairs apart. The result is a representation that has internalized the statistical structure of medical images and language, which can then be adapted to a specific task with comparatively little labeled data through fine-tuning or even zero- and few-shot prompting. Moor and colleagues articulated the vision of generalist medical AI: a single multimodal model ingesting images, reports, and structured data and performing tasks it was not explicitly trained for, queried in natural language. In CT this promises report generation, visual question answering, cross-modal retrieval, and unified segmentation–detection–description from one backbone.

The rigor demanded of the physician reader is skepticism proportionate to the hype. A foundation model inherits, and can amplify, every bias in its pre-training corpus; if that corpus underrepresents a scanner vendor, a body habitus, or a demographic group, the model's confident fluency will mask its incompetence on those inputs. The fluency itself is a hazard: large generative models confabulate, producing plausible, well-formatted findings that are simply false, and unlike a probability score from a detection CNN, a generated radiology sentence carries no native calibrated uncertainty. Evaluation methodology for these systems is immature — the field has not agreed on how to measure factual correctness of a generated report or on how to externally validate a model with effectively unbounded scope — and the regulatory frameworks designed for narrow, fixed-function devices fit poorly to a model whose behavior changes with the prompt. The promise is real and the trajectory steep, but in 2026 these systems are decision-support research tools, not autonomous interpreters, and the burden of verification that the following sections formalize applies to them with redoubled force.

04Validation Science

Validation is where machine learning meets clinical epistemology, and the central, non-negotiable lesson is that a model's reported accuracy is a statement about a distribution, not about a patient, and is meaningful only insofar as the validation distribution matches the deployment population. The atomic quantities are sensitivity, Se=TP/(TP+FN)\mathrm{Se}=\mathrm{TP}/(\mathrm{TP}+\mathrm{FN}), and specificity, Sp=TN/(TN+FP)\mathrm{Sp}=\mathrm{TN}/(\mathrm{TN}+\mathrm{FP}), which are properties of the test conditional on true disease status and are, to first approximation, prevalence-independent. What the clinician actually needs, however, are the predictive values, and these are not prevalence-independent. Bayes' theorem makes the dependence explicit: PPV=SepSep+(1Sp)(1p)\mathrm{PPV} = \dfrac{\mathrm{Se}\cdot p}{\mathrm{Se}\cdot p + (1-\mathrm{Sp})(1-p)}, where pp is the pre-test prevalence. A vivid worked case: a hemorrhage-detection model with Se=0.95\mathrm{Se}=0.95 and Sp=0.95\mathrm{Sp}=0.95 applied in an emergency cohort with 20%20\% prevalence yields PPV=(0.95)(0.20)/[(0.95)(0.20)+(0.05)(0.80)]0.83\mathrm{PPV} = (0.95)(0.20)/[(0.95)(0.20)+(0.05)(0.80)] \approx 0.83; deploy the identical model in an outpatient screening stream with 1%1\% prevalence and the PPV collapses to (0.95)(0.01)/[(0.95)(0.01)+(0.05)(0.99)]0.16(0.95)(0.01)/[(0.95)(0.01)+(0.05)(0.99)] \approx 0.16 — more than four of every five positive alerts are false, from a model whose sensitivity and specificity never changed. The odds form is the most transportable expression of this logic: post-test odds=pre-test odds×LR\mathrm{post\text{-}test\ odds} = \mathrm{pre\text{-}test\ odds} \times \mathrm{LR}, with the positive likelihood ratio LR+=Se/(1Sp)\mathrm{LR}^{+} = \mathrm{Se}/(1-\mathrm{Sp}) and the negative LR=(1Se)/Sp\mathrm{LR}^{-} = (1-\mathrm{Se})/\mathrm{Sp}; for the example above LR+=19\mathrm{LR}^{+}=19 and LR0.053\mathrm{LR}^{-}\approx 0.053, fixed properties that the reader then multiplies against whatever local prevalence obtains.

Because a model emits a continuous probability, its discrimination across all thresholds is summarized by the receiver operating characteristic curve, a plot of sensitivity against the false-positive rate (1Sp)(1-\mathrm{Sp}) as the threshold sweeps from 11 to 00. The area under this curve (AUC) has a precise probabilistic meaning — it equals the probability that the model assigns a higher score to a randomly chosen diseased case than to a randomly chosen non-diseased one — and it is threshold-independent, which is both its strength and its trap. Equivalently, under a Gaussian signal-detection model the separation is captured by the detectability index d=(μ1μ0)/σd' = (\mu_1 - \mu_0)/\sigma, the standardized distance between the diseased and non-diseased score distributions. A high AUC certifies that some threshold separates the classes well; it says nothing about whether the chosen operating threshold is safe, nothing about calibration (whether a predicted probability of 0.70.7 corresponds to a true frequency of 0.70.7), and nothing about performance in subgroups, because it averages over the whole spectrum. The AUC of a model evaluated on an enriched case–control set — many florid positives, many clean negatives — is inflated by spectrum bias relative to its performance on the ambiguous, comorbid, technically imperfect cases that dominate real practice.

The methodological apparatus that disciplines these inferences is by now codified. Park and Han laid out the design requirements for evaluating clinical AI performance — chiefly the demand for external, and ideally prospective, validation on data from sites and scanners the model never saw. The CLAIM (Mongan and colleagues, with a 2023 update) provides an item-by-item reporting standard for AI imaging studies; STARD-AI extends diagnostic-accuracy reporting; and CONSORT-AI and its protocol companion SPIRIT-AI govern the rare but essential randomized trials. Nagendran and colleagues, surveying studies comparing AI to clinicians, found pervasive deficiencies — few prospective designs, frequent absence of external validation, and overstated claims — a sobering reminder that the published AUC is the beginning, not the end, of evidence appraisal.

05Failure Analysis

If validation science establishes how a model should be proven, failure analysis establishes the mechanisms by which a proven model nonetheless fails in deployment, and a physician supervising these systems must hold a mechanistic taxonomy of those failures. The first and most consequential is dataset shift: the deployment distribution differs from the training distribution. It decomposes into covariate shift, in which the input distribution changes while the input-to-label mapping is stable — a new scanner vendor, a different reconstruction kernel or iterative-reconstruction strength, a thicker slice, a contrast-timing protocol, a different patient demographic — and label shift, in which disease prevalence changes, with the predictive-value consequences derived in the prior section. Zech and colleagues furnished the canonical demonstration: a pneumonia model trained at one hospital generalized poorly to others, and probing revealed it had partly learned to recognize the hospital from image artefacts and then exploited the differing baseline pneumonia rates between sites, a confound that vanished into a respectable internal AUC and surfaced only on external data.

That finding exemplifies the second mechanism, shortcut learning: a model optimizing a loss will seize whatever feature most cheaply reduces it, and that feature is frequently a spurious correlate rather than the pathology. CT-specific shortcuts are legion — a chest tube or support line that co-occurs with the disease, a body-part-specific scanner setting, a laterality marker, the very presence of a follow-up scan implying known disease. The model's internal logic is opaque, so the shortcut is invisible until the correlation breaks. Closely allied is miscalibration: modern deep networks are systematically overconfident, their softmax outputs poorly matching empirical frequencies, so a reported probability of 0.90.9 may correspond to a true positive rate well below that. Calibration is assessed by reliability diagrams and the expected calibration error, and a model can be well-discriminating (high AUC) yet badly calibrated, which corrupts any downstream Bayesian use of its probability and any risk-stratified workflow built upon it.

The remaining mechanisms are subtler but equally real. Neural networks are adversarially fragile and, more relevantly for clinical safety, fragile to genuine out-of-distribution inputs: an artefact-laden scan, an unusual anatomic variant, a pathology absent from training, or a corrupted volume can elicit a confident, wholly wrong output with no flag, because a standard classifier has no native ‘‘I have never seen this’’ response and will force every input into a known class. This is why out-of-distribution detection and uncertainty quantification are active safety requirements, not embellishments. Layered atop all the technical failures is the human one: automation bias, the tendency of clinicians to defer to algorithmic output — to discount a true finding the AI missed (omission error) or to accept a false finding the AI flagged (commission error). Automation bias is most dangerous precisely when the model is usually right, because trust is calibrated to the average and then misapplied to the rare failure. Wu and colleagues, analyzing FDA-cleared AI devices, documented how often clearance rested on limited, retrospective, single-site evaluation with sparse prospective or multi-site data, meaning the very failure modes catalogued here are frequently untested at the point a device reaches clinical hands. The synthesis is unforgiving: each failure mode converts an impressive in-silico metric into silent patient-level harm, and each is detectable only by deliberate external validation, calibration assessment, out-of-distribution monitoring, and disciplined human oversight.

06Clinical Integration

Clinical integration is the discipline of deploying an imperfect estimator into a sociotechnical system of radiologists, ordering physicians, workflows, and liability such that net patient benefit is realized and the failure modes of the preceding section are contained. The first and most clarifying decision is the model's role, which determines the evidentiary burden it must meet. In a triage or worklist-prioritization role the AI reorders the reading queue — pushing a probable hemorrhage or aortic dissection to the top — without altering the report; here the human reads every study regardless, so the relevant metric is time-to-diagnosis and the dominant risk is a falsely reassuring de-prioritization, mitigated by tuning the threshold for very high sensitivity. In a concurrent or second-reader aid the AI annotation is presented during interpretation, and the central question becomes the performance of the human–AI team, which is emphatically not the performance of either alone: a model that is individually accurate can degrade team performance if it induces automation bias, and a model of modest standalone accuracy can improve outcomes if it surfaces the cases humans systematically miss. In an autonomous role the AI issues findings without human review, the configuration with the highest benefit ceiling and the highest harm floor, justified in 2026 only for narrowly scoped, exhaustively validated tasks under explicit governance.

The regulatory and life-cycle dimension is inseparable from the clinical one. Clearance pathways evaluate a model at a frozen point in time, yet the deployment environment is non-stationary — scanners are upgraded, protocols drift, case mix shifts seasonally and demographically — so a device that met its specification at clearance can silently decay, the phenomenon of performance drift. Responsible integration therefore mandates prospective post-deployment monitoring: tracking the alert rate, the positive predictive value against confirmed outcomes, calibration over time, and subgroup performance, with pre-specified triggers for recalibration, retraining, or withdrawal. This is the imaging instantiation of the broader recognition, expressed in regulatory thinking about a total-product-life-cycle approach and the special challenge of continuously learning systems, that an AI medical device is a process to be governed rather than an artefact to be approved once.

Underlying all of this is an epistemic reframing that this chapter has built toward. Topol's articulation of high-performance medicine as the convergence of human and machine intelligence is apt precisely because it is not a hand-off but a synthesis: the model supplies tireless, reproducible pattern detection at scale, and the physician supplies causal reasoning, integration of the clinical context the pixels never contained, calibration of confidence, and — crucially — accountability for the decision. The radiologist's role is not abolished by a capable model; it is elevated to that of an accountable supervisor who understands the estimator's architecture well enough to anticipate where it will fail, who interrogates its output rather than ratifying it, who recognizes the out-of-distribution case the model cannot, and who retains responsibility for the patient. That supervisory competence — knowing what the model computes, on what data, with what biases, at what operating point, and with what calibrated uncertainty — is the literacy this chapter exists to instill, and it is the connective tissue between the quantitative-imaging, evidence, reasoning, and error-science chapters that surround it.

Check your understanding

10 questions
  1. 1.

    A CT intracranial-hemorrhage detection model reports a sensitivity of 0.95 and specificity of 0.95 from its validation study. It is deployed unchanged in an outpatient screening stream where the true prevalence of hemorrhage is 1%. What is the approximate positive predictive value, and what does it imply?

    med
  2. 2.

    Two segmentation algorithms are compared on the same liver-contouring task. Model A reports a Dice coefficient of 0.90; Model B reports an intersection-over-union (Jaccard index) of 0.90. Which statement is correct?

    hard
  3. 3.

    During training of a voxelwise CT lesion-segmentation network for small (1–3 mL) infarcts, a plain voxelwise cross-entropy loss yields a model that segments almost nothing yet reports very high voxel accuracy. What is the mechanism and the standard remedy?

    med
  4. 4.

    A deep-learning model for pneumonia on chest imaging achieves excellent AUC at its development hospital but degrades sharply at external sites. Investigation shows it partly learned to identify the originating hospital from image features and exploited differing baseline disease rates between hospitals. This is the canonical example of which paired phenomena?

    med
  5. 5.

    Two CT triage models are evaluated. Model X has an AUC of 0.97 but is poorly calibrated (a predicted probability of 0.9 corresponds to a true positive rate near 0.6). Model Y has an AUC of 0.92 and is well calibrated. For a workflow that risk-stratifies patients using the model's predicted probability, which consideration is most important?

    hard
  6. 6.

    A hemorrhage-detection model has fixed sensitivity 0.90 and specificity 0.95. What are its positive and negative likelihood ratios, and why are they more transportable across settings than its predictive values?

    med
  7. 7.

    Which characteristic of large multimodal foundation models applied to CT report generation poses a safety hazard distinct from the failure modes of a conventional detection CNN?

    med
  8. 8.

    A vendor presents a CT AI diagnostic-accuracy study reporting AUC 0.98. Which single feature of the study design would most strengthen confidence that this performance will hold in your practice?

    med
  9. 9.

    An AI tool is deployed solely to reorder the radiology worklist so that studies it scores as probable large-vessel occlusion are read first; every study is still read by a radiologist. Which statement about this triage role is correct?

    easy
  10. 10.

    After a CT AI device has been clinically deployed for a year, scanners have been upgraded and the imaging protocol revised. The device's standalone accuracy at FDA clearance is no longer a guarantee of current performance. What is the term for this risk and the appropriate response?

    hard
Answer all questions to submit.

🌐 Keep exploring — Radiopaedia & more

Hand-picked, free external references to deepen this topic.

References & primary literature

  1. 1.Titano JJ, Badgeley M, Schefflein J, et al. Automated deep-neural-network surveillance of cranial images for acute neurologic events. Nat Med. 2018;24(9):1337-1341.
  2. 2.Chilamkurthy S, Ghosh R, Tanamala S, et al. Deep learning algorithms for detection of critical findings in head CT scans: a retrospective study. Lancet. 2018;392(10162):2388-2396.
  3. 3.Flanders AE, Prevedello LM, Shih G, et al. Construction of a Machine Learning Dataset through Collaboration: The RSNA 2019 Brain CT Hemorrhage Challenge. Radiol Artif Intell. 2020;2(3):e190211.
  4. 4.Isensee F, Jaeger PF, Kohl SAA, Petersen J, Maier-Hein KH. nnU-Net: a self-configuring method for deep learning-based biomedical image segmentation. Nat Methods. 2021;18(2):203-211.
  5. 5.Wasserthal J, Breit HC, Meyer MT, et al. TotalSegmentator: Robust Segmentation of 104 Anatomic Structures in CT Images. Radiol Artif Intell. 2023;5(5):e230024.
  6. 6.Moor M, Banerjee O, Abad ZSH, et al. Foundation models for generalist medical artificial intelligence. Nature. 2023;616(7956):259-265.
  7. 7.Zech JR, Badgeley MA, Liu M, Costa AB, Titano JJ, Oermann EK. Variable generalization performance of a deep learning model to detect pneumonia in chest radiographs: A cross-sectional study. PLoS Med. 2018;15(11):e1002683.
  8. 8.Wu E, Wu K, Daneshjou R, Ouyang D, Ho DE, Zou J. How medical AI devices are evaluated: limitations and recommendations from an analysis of FDA approvals. Nat Med. 2021;27(4):582-584.
  9. 9.Park SH, Han K. Methodologic Guide for Evaluating Clinical Performance and Effect of Artificial Intelligence Technology for Medical Diagnosis and Prediction. Radiology. 2018;286(3):800-809.
  10. 10.Mongan J, Moy L, Kahn CE Jr. Checklist for Artificial Intelligence in Medical Imaging (CLAIM): A Guide for Authors and Reviewers. Radiol Artif Intell. 2020;2(2):e200029.
  11. 11.Nagendran M, Chen Y, Lovejoy CA, et al. Artificial intelligence versus clinicians: systematic review of design, reporting standards, and claims of deep learning studies. BMJ. 2020;368:m689.
  12. 12.Liu X, Cruz Rivera S, Moher D, et al. Reporting guidelines for clinical trial reports for interventions involving artificial intelligence: the CONSORT-AI extension. Nat Med. 2020;26(9):1364-1374.
  13. 13.Topol EJ. High-performance medicine: the convergence of human and artificial intelligence. Nat Med. 2019;25(1):44-56.

Tip: use ← / → to move between chapters.