OpenVAE
收藏资源简介:
OpenVAE是由约翰斯·霍普金斯大学等机构联合构建的大规模胸部CT增强数据集,包含17,316例经放射科医生验证的公开EICT扫描数据,通过SUMI方法提升至PCCT级质量。数据集涵盖来自145家医院的405,379例常规CT和1,046例光子计数CT(PCCT),并标注了气道树、肺动脉、肺静脉等精细解剖结构。其创新性在于通过临床验证的退化模型模拟真实采集伪影,实现无配对数据的质量增强。该数据集旨在推动跨机构胸部影像研究,提升肺结节检测等下游任务的性能,解决PCCT设备稀缺导致的临床数据鸿沟问题。
OpenVAE is a large-scale enhanced chest CT dataset jointly constructed by Johns Hopkins University and other institutions. It contains 17,316 publicly available EICT scans validated by radiologists, which are upgraded to PCCT-level quality using the SUMI method. The dataset covers 405,379 routine CT scans and 1,046 photon-counting CT (PCCT) scans sourced from 145 hospitals, with fine anatomical structures including airway trees, pulmonary arteries, and pulmonary veins annotated. Its core innovation lies in simulating real-world acquisition artifacts via a clinically validated degradation model, thereby achieving quality enhancement without paired data. This dataset is designed to advance cross-institutional chest imaging research, improve the performance of downstream tasks such as pulmonary nodule detection, and bridge the clinical data gap caused by the scarcity of PCCT equipment.
OpenVAE 数据集概述
数据集基本信息
- 名称: OpenVAE
- 类型: 医学影像变分自编码器(VAE)模型家族
- 领域: 医学影像、计算机断层扫描(CT)、磁共振成像(MRI)
- 许可证: MIT
- 相关论文: Distilling Photon-Counting CT into Routine Chest CT through Clinically Validated Degradation Modeling
- 代码仓库: https://github.com/KumaKuma2002/OpenVAE
- 模型仓库: https://huggingface.co/SMILE-project/OpenVAE
核心目标
提供开源的、预训练的VAE骨干网络,用于CT/MRI扩散模型,支持2D和3D医学图像重建与生成。
模型与训练
- 模型架构: 包含KL-VAE和VQ-VAE。
- 训练数据: 在多达100万个CT体数据上进行训练。
- 训练目标: 结合了感知损失、对抗性损失和分割引导目标。
- 模型变体: 提供多种2D和3D模型,区别在于训练患者数量、潜在空间下采样因子(如4x、8x)和输入分辨率(如512²、64³、128³)。
关键模型与性能
在OpenVAE CT保留基准测试集(12个病例)上的重建指标如下(SSIM、PSNR越高越好,LPIPS越低越好):
| 模型 | 类型 | 患者数 | 潜在下采样 | 分辨率 | SSIM | PSNR (dB) | LPIPS |
|---|---|---|---|---|---|---|---|
OpenVAE-2D-4x-2K |
KL-VAE | 2K | 4× | 512² | 0.8932 | 34.87 | 0.0868 |
OpenVAE-2D-4x-10K |
KL-VAE | 10K | 4× | 512² | 0.8867 | 34.91 | 0.0816 |
OpenVAE-2D-4x-10K-pro |
KL-VAE | 10K | 4× | 512² | 0.8880 | 34.51 | 0.0781 |
OpenVAE-2D-4x-20K |
KL-VAE | 20K | 4× | 512² | 0.8798 | 34.63 | 0.0782 |
OpenVAE-2D-4x-100K |
KL-VAE | 100K | 4× | 512² | 0.8835 | 34.24 | 0.0752 |
OpenVAE-2D-4x-300K |
KL-VAE | 300K | 4× | 512² | 0.8874 | 33.84 | 0.0852 |
OpenVAE-2D-4x-PCCT_enhanced |
KL-VAE | 300K | 4× | 512² | 0.8813 | 34.00 | 0.0756 |
OpenVAE-3D-4x-patch64-10K |
KL-VAE | 10K | 4× | 64³ | 0.8099 | 25.99 | 0.1565 |
发布与获取
- 预训练权重: 可通过Hugging Face获取:https://huggingface.co/SMILE-project/OpenVAE
- 发布历史:
- 2026年3月15日:2D OpenVAE权重上传至Hugging Face。
- 2026年4月6日:首个3D 64³补丁检查点(
OpenVAE-3D-4x-patch64-10K)上传。
使用方式
- 2D VAE (Diffusers): 使用
AutoencoderKL.from_pretrained加载模型进行编码和解码。 - 3D VAE (MONAI): 使用
AutoencoderKlMaisi架构加载检查点进行3D体数据编码和解码。 - CT重建: 提供2D逐切片和3D滑动窗口推理脚本。
训练数据格式
- HDF5 (默认):
train_data_dir/<subject_id>/ct.h5,键为"image",形状为(H, W, D),HU值范围[-1000, 1000]。 - NIfTI (可选):
train_data_dir/<subject_id>/ct.nii.gz或ct.nii,要求相同的HU范围和形状约定。
评估指标
| 指标 | 范围 | 方向 | 描述 |
|---|---|---|---|
| MAE_100 | 0–100 | 越高越好 | 在[0,1]范围内的3D体数据上计算(1 - MAE) * 100 |
| Detail_100 | 0–100 | 越高越好 | 3D梯度幅值的皮尔逊相关性 |
| SSIM | 0–1 | 越高越好 | 结构相似性 |
| PSNR | dB | 越高越好 | 峰值信噪比 |
| LPIPS | 0–1 | 越低越好 | 学习感知图像块相似度(基于AlexNet) |
引用要求
使用OpenVAE权重、发布的CT潜在表示或本仓库相关资源时,请引用主要论文(arXiv:2604.07329)。若基于或对比早期的解剖感知对比度增强工作,请同时引用相关论文(arXiv:2512.07251)。

- 1Distilling Photon-Counting CT into Routine Chest CT through Clinically Validated Degradation Modeling约翰斯·霍普金斯大学; 加州大学旧金山分校; 哈佛医学院; 埃默里大学; 英伟达; 约翰斯·霍普金斯医学中心 · 2026年



