# Data Requirements and Quality Standards for Medical Imaging AI

📊 Data Requirements and Quality Standards for Medical Imaging AI


    Article #5 in "Machine Learning for Medical Diagnosis" Research Series
    By Oleh Ivchenko, Researcher, ONPU | Stabilarity Hub | February 8, 2026
    Questions Addressed: What data quality standards are required for medical imaging AI? How much data is needed? What are the sources of bias and how do we mitigate them?



  
  
    Data requirements and quality standards for medical AI
  



    Key Finding: Of 1,016 FDA-approved AI medical devices, 93.3% did not report training data source and 76.3% lacked demographic information. Only 48.4% reported any performance metrics. The "Garbage In, Garbage Out" principle is critically underenforced in medical AI — this article provides the data quality framework that regulators should require.


1. The Data Quality Crisis in Medical AI

The promise of AI in medical imaging depends entirely on data quality. Yet a comprehensive 2025 study of all 1,016 FDA-approved AI/ML medical devices reveals a troubling reality:


    📉 FDA Transparency Analysis (December 2024)
    
        
            Data Characteristic
            Devices Reporting (%)
            Gap
        
        
            Training data source
            6.7%
            93.3% unreported
        
        
            Test data source
            24.5%
            75.5% unreported
        
        
            Training dataset size
            9.4%
            90.6% unreported
        
        
            Test dataset size
            23.2%
            76.8% unreported
        
        
            Demographic information
            23.7%
            76.3% unreported
        
        
            Any performance metrics
            48.4%
            51.6% unreported
        
    
    Source: Nature Digital Medicine, "Evaluating transparency in AI/ML model characteristics for FDA-reviewed medical devices," 2025


The mean AI Characteristics Transparency Reporting (ACTR) score across all devices was just 3.3 out of 17 possible points. Even after the FDA's 2021 Good Machine Learning Practice (GMLP) guidelines, scores only improved by 0.88 points — remaining far below acceptable standards.


    ⚠️ Critical Implication for Ukraine: If the world's most regulated medical device market (FDA) allows such opacity, Ukrainian hospitals must establish their own rigorous data quality standards for any AI adoption — rather than trusting marketed claims blindly.


2. Dataset Size Requirements: How Much Data Is Enough?

The relationship between training dataset size and model performance follows a logarithmic curve — with diminishing returns at scale, but critical thresholds below which models fail entirely.

2.1 Minimum Viable Dataset Sizes


    
        Task Type
        Minimum Size
        Recommended Size
        State-of-Art Datasets
    
    
        Binary classification (e.g., cancer/no cancer)
        1,000-5,000 images
        10,000+ images
        CheXpert: 224,316
    
    
        Multi-class classification (6+ classes)
        500-1,000 per class
        2,000+ per class
        NIH ChestX-ray14: 112,120
    
    
        Object detection/localization
        2,000-5,000 with bbox
        15,000+ with bbox
        VinDr-CXR: 18,000
    
    
        Semantic segmentation
        500-1,000 with masks
        5,000+ with masks
        Varies by anatomy
    



    Research Finding (Do &amp; Woo, 2016): Training a CNN to classify CT images into 6 anatomical classes with 90%+ accuracy required approximately 200 images per class with transfer learning. Without transfer learning, the requirement jumps to 1,000+ images per class.


2.2 The Transfer Learning Advantage

Transfer learning dramatically reduces data requirements by leveraging pre-trained models (ImageNet, RadImageNet, etc.):



┌─────────────────────────────────────────────────────────────┐
│              DATASET SIZE REQUIREMENTS                       │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│  From Scratch:     ████████████████████████  10,000+ images │
│                                                              │
│  Transfer Learning: ████████               ~1,000 images    │
│                                                              │
│  Few-Shot/Fine-tune: ██                    ~100 images      │
│                      (with foundation models)                │
│                                                              │
└─────────────────────────────────────────────────────────────┘



A 2025 BMC Medical Imaging scoping review found that 50% of deep learning medical imaging studies used datasets between 1,000-10,000 samples — suggesting this range represents current practical norms.

3. The Six Pillars of Medical Imaging Data Quality

Based on the CLAIM 2024 Update (Checklist for Artificial Intelligence in Medical Imaging) and RIDGE framework (Reproducibility, Integrity, Dependability, Generalizability, Efficiency), we define six essential data quality pillars:


    
        🎯 1. Reference Standard Quality
        Definition: The benchmark against which AI predictions are measured.
        
            Use "reference standard" not "ground truth"
            Minimum 3 independent annotators
            Document consensus methodology
            Report interobserver variability (Dice, κ)
        
        CLAIM 2024 recommends avoiding "ground truth" — it implies certainty that rarely exists in medicine.
    
    
    
        📋 2. Annotation Protocol
        Definition: Standardized instructions for human labelers.
        
            Written guidelines with visual examples
            Training for all annotators
            Clear boundary definitions
            Handling of edge cases documented
        
        VinDr-CXR used 17 radiologists with 8+ years experience, 3 per training image, 5 consensus for test set.
    
    
    
        👥 3. Demographic Representation
        Definition: Dataset reflects target population diversity.
        
            Age distribution documented
            Sex/gender balance reported
            Race/ethnicity when relevant
            Geographic/institutional diversity
        
        Only 23.7% of FDA devices reported demographics — unacceptable for fair AI.
    
    
    
        🔧 4. Technical Specifications
        Definition: Image acquisition parameters documented.
        
            Scanner manufacturer/model
            Image resolution and bit depth
            Acquisition protocols (kVp, mAs, etc.)
            DICOM format with metadata
        
        Heterogeneous scanners improve generalization but must be documented.
    
    
    
        🔒 5. Privacy &amp; De-identification
        Definition: Patient data protection compliance.
        
            HIPAA/GDPR/local law compliance
            PHI removal from DICOM tags
            Facial structure removal (CT/MRI)
            Pseudonymization vs anonymization choice
        
        Re-identification risk increases with multi-modal data linkage.
    
    
    
        📊 6. Data Partitioning
        Definition: Proper train/validation/test splits.
        
            Patient-level splitting (not image-level!)
            External test sets preferred
            Temporal splits when applicable
            No data leakage across partitions
        
        CLAIM 2024: Use "internal testing" and "external testing" — avoid ambiguous "validation."
    


4. Annotation Quality: The Interobserver Variability Challenge

Human annotation is inherently subjective. A 2023 systematic review of interobserver variability in diagnostic imaging found significant inconsistency even among expert radiologists:


    🔬 Interobserver Variability Findings
    
        
            Task
            Typical Agreement (κ)
            Implication
        
        
            Chest X-ray pathology detection
            0.4-0.7 (moderate-substantial)
            Multiple readers essential
        
        
            Lung nodule detection
            0.5-0.8 (moderate-substantial)
            Consensus protocols needed
        
        
            Brain lesion segmentation
            0.6-0.9 (substantial-excellent)
            Well-defined protocols help
        
        
            Mammography BI-RADS
            0.3-0.6 (fair-moderate)
            High variability in gray zones
        
    



    💡 Key Insight: If expert radiologists only agree 50-70% of the time on certain findings, an AI model trained on single-annotator labels inherits this noise. Multi-reader annotation with consensus mechanisms is not optional — it's mandatory for quality.


4.1 Strategies for Managing Annotation Variability


    
        Strategy
        Description
        When to Use
    
    
        Majority voting
        Label = most common annotation among N readers
        Classification tasks, discrete labels
    
    
        STAPLE algorithm
        Probabilistic combination weighting by annotator reliability
        Segmentation tasks
    
    
        Consensus meeting
        Experts discuss and agree on final label
        Test sets, difficult cases
    
    
        Uncertainty labels
        Mark ambiguous cases explicitly (CheXpert approach)
        Training with uncertainty-aware loss
    
    
        Multi-rater training
        Train on all individual annotations, not consensus
        When variability is inherent to task
    


5. Sources of Bias in Medical Imaging Datasets

A comprehensive 2025 review identified 20+ types of bias affecting medical imaging AI. The most critical for Ukrainian hospitals to understand:



┌─────────────────────────────────────────────────────────────────────────┐
│                    BIAS SOURCES IN MEDICAL AI PIPELINE                   │
├─────────────────────────────────────────────────────────────────────────┤
│                                                                          │
│  DATA COLLECTION          MODEL DEVELOPMENT          DEPLOYMENT          │
│  ┌─────────────┐         ┌──────────────┐         ┌──────────────┐      │
│  │ Selection   │         │ Label noise  │         │ Automation   │      │
│  │ Sampling    │  ───►   │ Class imbal. │  ───►   │ Feedback     │      │
│  │ Demographic │         │ Overfitting  │         │ Temporal     │      │
│  │ Temporal    │         │ Leakage      │         │ Distribution │      │
│  └─────────────┘         └──────────────┘         └──────────────┘      │
│                                                                          │
│  EXAMPLES:                EXAMPLES:                EXAMPLES:             │
│  • Single hospital        • NLP-extracted labels   • Scanner drift       │
│  • Age/sex skew          • Image-level splits     • Protocol changes     │
│  • Scanner vendor         • Threshold tuning      • Population shift     │
│                                                                          │
└─────────────────────────────────────────────────────────────────────────┘



5.1 Demographic Bias: The Fairness Gap

A landmark 2024 Nature Medicine study found that AI models can infer demographic attributes (age, sex, race) directly from chest X-rays — and this capability correlates with fairness gaps in disease prediction:


    MIT Study Finding (2024): "There was a significant correlation between each model's accuracy in making demographic predictions and the size of its fairness gap" — meaning models that better detect race from images also show larger performance disparities across racial groups.



    
        Bias Type
        Example
        Impact
        Mitigation
    
    
        Representation bias
        Dermatology AI trained on light skin tones
        Underdiagnosis in darker skin
        Diverse dataset collection
    
    
        Measurement bias
        Labels from reports (NLP-extracted)
        Inherits report biases
        Direct radiologist annotation
    
    
        Aggregation bias
        Single model for all age groups
        Poor pediatric/geriatric performance
        Age-stratified validation
    
    
        Temporal bias
        Training data from 2015, deployment 2025
        Scanner/protocol evolution
        Continuous monitoring &amp; retraining
    


6. Major Public Medical Imaging Datasets: Quality Comparison

Understanding the characteristics of public datasets helps set benchmarks for Ukrainian data collection:


    
        Dataset
        Size
        Annotation Method
        Local Labels
        Quality Concern
    
    
        ChestX-ray14 (NIH)
        112,120
        NLP-extracted from reports
        983 bbox only
        High label noise documented
    
    
        CheXpert (Stanford)
        224,316
        Rule-based NLP
        None
        Uncertainty labels help but NLP origin
    
    
        MIMIC-CXR
        377,110
        Same as CheXpert
        None
        Large scale, NLP labels
    
    
        PadChest
        160,868
        27% radiologist, 73% NLP
        Encoded regions
        Mixed quality
    
    
        VinDr-CXR
        18,000
        3-5 radiologists per image
        Full bounding boxes
        Gold standard methodology
    
    
        JSRT
        247
        Expert radiologist
        Full segmentation
        High quality, small size
    



    💡 Key Observation: The largest datasets (MIMIC-CXR, CheXpert) use automated NLP labeling — faster but noisier. The highest quality datasets (VinDr-CXR, JSRT) use multi-reader radiologist annotation — slower but reliable. For Ukrainian deployment, quality trumps quantity.


7. The CLAIM 2024 Checklist: What to Report

The updated Checklist for Artificial Intelligence in Medical Imaging (2024) provides authoritative guidance. Key data-related requirements:

7.1 Required Data Documentation


    Data sources: State source(s), including public datasets; provide links
    Inclusion/exclusion criteria: Location, dates, demographics, care setting
    Preprocessing steps: Normalization, resampling, bit depth changes
    Data subset selection: If selecting portions of images, explain why and how
    De-identification: Methods meeting HIPAA/GDPR compliance
    Missing data handling: Imputation methods, potential biases introduced
    Image acquisition protocol: Manufacturer, sequence, resolution, slice thickness
    Reference standard definition: Precise criteria, not vague descriptions
    Annotator qualifications: Number, expertise level, training provided
    Annotation methodology: Software used, discrepancy resolution


7.2 Critical Terminology Updates


    
        Avoid
        Use Instead
        Reason
    
    
        "Ground truth"
        "Reference standard"
        Acknowledges uncertainty in medical labels
    
    
        "Validation set"
        "Internal testing" / "Tuning"
        Avoids confusion with clinical validation
    
    
        "External validation"
        "External testing"
        Clearer meaning
    
    
        "Gold standard"
        "Reference standard"
        No label is truly "gold"
    


8. Data Quality Checklist for Ukrainian Hospitals

Based on international standards, here's a practical checklist for Ukrainian healthcare facilities considering AI adoption or data collection:


    📋 Pre-Deployment Data Assessment
    1. Source Audit
    2. Demographics Check
    3. Protocol Match
    4. Bias Scan
    5. Quality Score


8.1 Questions to Ask Vendors


    Training data source: Which hospitals/regions? What years?
    Dataset size: How many images total? Per class?
    Demographics: Age, sex, ethnicity distribution of training data?
    Annotation methodology: Who labeled? How many readers? What consensus?
    Scanner diversity: Which manufacturers? Protocol variations?
    External testing: Tested on data from outside training institutions?
    Subgroup performance: Metrics broken down by age, sex, pathology severity?
    Ukrainian testing: Has this model been tested on Ukrainian patient populations?



    ⚠️ Red Flags: If a vendor cannot answer these questions, or provides only aggregate performance metrics without demographic breakdowns, exercise extreme caution. The FDA found 51.6% of approved devices report no performance metrics at all.


8.2 Minimum Data Quality Standards for ScanLab


    
        Criterion
        Minimum Standard
        Ideal Standard
    
    
        Annotators per image
        ≥2 radiologists
        3+ with consensus protocol
    
    
        Annotator experience
        ≥5 years radiology
        ≥8 years, subspecialty certified
    
    
        Interobserver agreement reported
        Yes (κ or Dice)
        Yes, with disagreement analysis
    
    
        Demographic documentation
        Age, sex distribution
        Full demographics + subgroup metrics
    
    
        Data partition method
        Patient-level split
        Patient-level + temporal + external
    
    
        Scanner diversity
        ≥2 manufacturers
        ≥3 manufacturers, multiple sites
    
    
        Ukrainian representation
        Any Ukrainian data tested
        Ukrainian data in training + testing
    


9. Unique Conclusions and Synthesis


    🔑 Novel Insights from This Analysis
    
        The Transparency Paradox: Despite FDA GMLP guidelines, medical AI remains a "black box" for data quality. Only 6.7% of approved devices reveal training data sources. This is not a technical limitation — it's an accountability gap that Ukrainian regulators should not replicate.
        
        Quality Over Quantity: VinDr-CXR with 18,000 carefully annotated images outperforms models trained on 200,000+ NLP-labeled images for localization tasks. Ukrainian hospitals should prioritize multi-reader annotated datasets even if smaller.
        
        The "Reference Standard" Shift: The move from "ground truth" to "reference standard" terminology reflects a mature understanding that medical labels are probabilistic, not absolute. This philosophical shift should inform all Ukrainian AI procurement.
        
        Demographic Fairness is Technical: AI models can detect demographics from X-rays alone — and this correlates with unfair performance. Testing on Ukrainian populations is not optional; it's essential for equitable care.
        
        The Annotation Cost-Quality Tradeoff: Multi-reader annotation (3-5 radiologists per image) costs 3-5x more than single-reader or NLP extraction. This cost is justified for clinical deployment but may be optimized for initial development with active learning strategies.
    


10. ScanLab Implementation Recommendations

For the ScanLab project, we recommend the following data quality framework:


    Establish a Ukrainian Reference Dataset: Partner with 2-3 major Ukrainian hospitals to create a multi-reader annotated test set (minimum 3,000 images) representing Ukrainian patient demographics and scanner fleet.
    
    Implement Vendor Vetting Protocol: Require all AI vendors to complete a standardized data quality questionnaire based on CLAIM 2024 before evaluation.
    
    Create Continuous Monitoring Dashboard: Track model performance by demographic subgroups over time to detect distribution shift and emerging biases.
    
    Develop Annotation Guidelines: Create Ukrainian-language annotation protocols with visual examples for common pathologies, enabling consistent future data collection.
    
    Build Data Quality Registry: Maintain a database of evaluated AI models with their data quality scores, enabling informed procurement decisions across Ukrainian healthcare.


11. Open Questions for Future Research


    ❓ Questions Generated
    
        What is the minimum dataset size specifically for Ukrainian patient populations given demographic differences from US/EU training data?
        How do equipment differences between Ukrainian hospitals (older vs. newer scanners) affect AI model generalization?
        Can synthetic data augmentation compensate for demographic underrepresentation, or does it introduce new biases?
        What is the cost-effectiveness threshold for multi-reader annotation in resource-constrained Ukrainian settings?
        How should Ukrainian regulations evolve to mandate data quality transparency that FDA guidelines failed to enforce?
    


12. References


    Mahbub et al. (2025). "Evaluating transparency in AI/ML model characteristics for FDA-reviewed medical devices." npj Digital Medicine. Link
    
    Mongan J, et al. (2024). "Checklist for Artificial Intelligence in Medical Imaging (CLAIM): 2024 Update." Radiology: Artificial Intelligence. PMC Link
    
    Stable et al. (2024). "RIDGE: Reproducibility, Integrity, Dependability, Generalizability, and Efficiency Assessment of Medical Image Segmentation Models." Journal of Imaging Informatics in Medicine. Link
    
    Stable et al. (2024). "Image annotation and curation in radiology: an overview for machine learning practitioners." European Radiology Experimental. PMC Link
    
    Stable et al. (2025). "Bias in artificial intelligence for medical imaging: fundamentals, detection, avoidance, mitigation, challenges, ethics, and prospects." Diagnostic and Interventional Radiology. PMC Link
    
    Zhang et al. (2024). "The limits of fair medical imaging AI in real-world generalization." Nature Medicine. Link
    
    Nguyen et al. (2022). "VinDr-CXR: An open dataset of chest X-rays with radiologist's annotations." Scientific Data. PMC Link
    
    Do S, Woo K. (2016). "How much data is needed to train a medical image deep learning system to achieve necessary high accuracy?" arXiv:1511.06348. Link
    
    Irvin J, et al. (2019). "CheXpert: A Large Chest Radiograph Dataset with Uncertainty Labels and Expert Comparison." AAAI. Project Page
    
    Wang X, et al. (2017). "ChestX-ray8: Hospital-scale Chest X-ray Database and Benchmarks." CVPR.




Questions Answered


    Q: What data quality standards are required for medical imaging AI?
    A: CLAIM 2024 defines essential requirements: documented data sources, multi-reader annotation with consensus protocols, demographic representation, patient-level data splits, acquisition protocol specifications, and privacy compliance. Current FDA transparency is alarmingly low (ACTR score 3.3/17).
    
    Q: How much data is needed to train medical imaging AI?
    A: Minimums range from 1,000-5,000 images for binary classification to 10,000+ for multi-class tasks. Transfer learning reduces requirements ~10x. Quality (multi-reader annotation) matters more than quantity (NLP-extracted labels).
    
    Q: What are the sources of bias and how do we mitigate them?
    A: Major sources include representation bias (demographic undersampling), measurement bias (NLP label extraction), annotation bias (single-reader subjectivity), and temporal bias (data age). Mitigation requires diverse multi-site data, multi-reader annotation, demographic stratification, and continuous monitoring post-deployment.





    Series: Machine Learning for Medical Diagnosis | 
    Article 5 of 35 | 
    Stabilarity Hub

