AI News AI资讯 8h ago Updated 2h ago 更新于 2小时前 49

Meet NeuroVFM: A New Neuroimaging Foundation Model Trained With Vol-JEPA on Uncurated Clinical MRI and CT Volumes 认识NeuroVFM:一种使用Vol-JEPA在未整理临床MRI和CT体积上训练的新神经影像基础模型

NeuroVFM is a generalist visual foundation model for neuroimaging trained on 5.24 million uncurated clinical MRI and CT volumes using the Vol-JEPA self-supervised framework. The model achieves state-of-the-art performance with a macro-averaged AUROC of 92.68 on CT and 92.49 on MRI across 156 diagnostic tasks, outperforming baselines that rely on report supervision or voxel reconstruction. Vol-JEPA utilizes latent space prediction rather than pixel reconstruction, enabling efficient training with 密歇根大学发布NeuroVFM,首个基于未整理临床数据的神经影像基础模型,解决通用AI因隐私问题缺乏医疗数据的问题。 采用Vol-JEPA自监督学习架构,在524万MRI/CT体积数据上训练,无需标签或报告文本即可预测潜在空间表示。 在156项诊断任务中达到92.68 (CT) / 92.49 (MRI) AUROC,显著优于基于报告监督或像素重建的基线模型。 支持报告生成、分诊及跨模态迁移,在前瞻性研究中平衡准确率超92%,但作者强调其定位为辅助决策而非自主筛查。

65
Hot 热度
70
Quality 质量
75
Impact 影响力

Analysis 深度分析

TL;DR

  • NeuroVFM is a generalist visual foundation model for neuroimaging trained on 5.24 million uncurated clinical MRI and CT volumes using the Vol-JEPA self-supervised framework.
  • The model achieves state-of-the-art performance with a macro-averaged AUROC of 92.68 on CT and 92.49 on MRI across 156 diagnostic tasks, outperforming baselines that rely on report supervision or voxel reconstruction.
  • Vol-JEPA utilizes latent space prediction rather than pixel reconstruction, enabling efficient training with fewer than 1,000 GPU hours and significantly faster convergence compared to prior methods.
  • Downstream applications include automated report generation, triage prioritization, and grounded predictions, with the NeuroVFM-LLaVA system demonstrating superior triage accuracy (92.6%) compared to frontier generalist models like GPT-5.

Why It Matters

This development bridges a critical gap in medical AI by demonstrating that large-scale, uncurated clinical data can effectively train robust foundation models without relying on expensive paired radiology reports or disease-specific curation. It validates the scalability of JEPA-style self-supervised learning for volumetric medical imaging, offering a pathway to generalize AI tools across diverse modalities and institutions. For practitioners, it provides a high-performance, open-source baseline that reduces the dependency on labeled datasets while maintaining clinical utility for decision support.

Technical Details

  • Architecture and Training: The base model, Vol-JEPA, extends I-JEPA/V-JEPA to 3D volumes by tokenizing MRI/CT scans into 4×16×16-voxel patches. It employs a student-predictor-teacher framework where the student predicts latent representations of masked regions based on visible context, guided by an EMA teacher encoder.
  • Data and Masking Strategy: Trained on the UM-NeuroImages dataset (566,915 studies), the model uses foreground-focused masking with precomputed head masks to force learning of neuroanatomy rather than background shortcuts. Context ratios are set at 25% for MRI and 20% for CT, with 20% patch dropout.
  • Performance Benchmarks: NeuroVFM outperformed models using report/language supervision (HLIP, PRIMA) and voxel reconstruction (NeuroMAE) when trained on the same data. It also surpassed generalist natural image models (DINOv3, BiomedCLIP) on aggregate AUROC metrics.
  • Efficiency and Scale: The model features an 85.8M parameter encoder (with a 21.7M small variant) and trains over 7x faster than 3DINO baselines, fitting 16x larger batches due to the absence of a voxel decoder.
  • Downstream Integration: The frozen encoder was paired with Qwen3-14B in a LLaVA-1.5 style architecture for report generation and triage, utilizing an attention-based MIL pooler for grounded predictions without requiring region-level annotations.

Industry Insight

  • Shift from Supervised to Self-Supervised Medical AI: The success of Vol-JEPA suggests that future medical foundation models will increasingly rely on self-supervised latent prediction on raw, uncurated clinical data, reducing the bottleneck of manual annotation and report pairing.
  • Clinical Decision Support over Autonomous Diagnosis: The prospective study results highlight that while AI can match or exceed human-level triage accuracy, sensitivity gaps remain (missing 13.5% of critical findings). This reinforces the industry standard of positioning such models as decision-support tools rather than autonomous diagnostic agents.
  • Cost-Effective Deployment: The high training efficiency and small model size (85.8M parameters) make NeuroVFM highly deployable in resource-constrained healthcare settings, potentially lowering the barrier to entry for hospitals seeking to implement advanced imaging analytics without massive computational infrastructure.

TL;DR

  • 密歇根大学发布NeuroVFM,首个基于未整理临床数据的神经影像基础模型,解决通用AI因隐私问题缺乏医疗数据的问题。
  • 采用Vol-JEPA自监督学习架构,在524万MRI/CT体积数据上训练,无需标签或报告文本即可预测潜在空间表示。
  • 在156项诊断任务中达到92.68 (CT) / 92.49 (MRI) AUROC,显著优于基于报告监督或像素重建的基线模型。
  • 支持报告生成、分诊及跨模态迁移,在前瞻性研究中平衡准确率超92%,但作者强调其定位为辅助决策而非自主筛查。

为什么值得看

该研究突破了医疗AI依赖标注数据和公开互联网数据的局限,证明了利用医院内部未整理的大规模临床数据进行“健康系统学习”的可行性与高效性。对于医疗AI开发者而言,它展示了自监督学习在复杂3D医学影像中的巨大潜力,为构建通用医疗基础模型提供了新的技术路径和数据策略。

技术解析

  • 数据与架构:基于UM-NeuroImages数据集(566,915项研究,524万个体积),使用扩展自I-JEPA/V-JEPA的Vol-JEPA架构,将3D体素切分为4×16×16的patch进行令牌化。
  • 训练机制:采用前景聚焦的掩码策略(MRI上下文25%,CT 20%),通过学生编码器预测教师编码器生成的目标潜在表示,最小化平滑L1损失,无需像素重建或文本对齐。
  • 性能对比:相比HLIP、PRIMA和NeuroMAE等使用相同数据的模型,Latent Prediction目标函数表现最佳;相比DINOv3和BiomedCLIP等自然图像基线,在医疗任务上具有显著优势。
  • 效率与部署:基础编码器仅85.8M参数,训练耗时少于1000 GPU小时,速度比3DINO快7倍,且支持16倍更大批次。集成Qwen3-14B实现报告生成,推理成本低于前沿大模型24倍以上。

行业启示

  • 数据策略转型:医疗机构应重视内部未结构化数据的价值,建立“健康系统学习”范式,减少对昂贵标注数据和公开数据集的依赖。
  • 自监督学习的医疗适用性:JEPA类潜在预测方法在处理3D医学影像时优于传统的MAE(像素重建)和CLIP(图文对齐),未来可成为医疗视觉基础模型的主流预训练方向。
  • 人机协作定位:尽管模型在分诊和报告生成上表现优异,但存在关键发现漏检率(约13.5%),行业需明确AI作为“决策支持”而非“自主诊断”的角色,注重伦理与安全边界。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Healthcare AI 医疗AI Research 科学研究 Multimodal 多模态