Views
No views yet
"Domain-Specific Latent Representations Improve the Fidelity of Diffusion-Based Medical Image Super-Resolution"
Sebastian Cajas, Ashaba Judith, Rahul Gorijavolu, Sahil Kapadia, Hillary Clinton Kasimbazi, Leo Kinyera, Emmanuel Paul Kwesiga, Sri Sri Jaithra Varma Manthena, Luis Filipe Nakayama, Ninsiima Doreen, Leo Anthony Celi.
arXiv:2604.12152 (2026) — under review at Nature Scientific Reports.
Note on metrics: the paper's super-resolution results were recomputed against true high-resolution references. To avoid publishing stale or uncertain per-checkpoint PSNR values, they are not tabulated here — see the paper for the authoritative, reference-based numbers. Each checkpoint below is described by its VAE type, latent geometry, dataset, and experimental role.
| File | VAE (latent) | Dataset | Role |
|---|---|---|---|
medvae-4-3_brats.ckpt | MedVAE 4_3 (3×64×64) | BraTS 2023 brain MRI | Paper main result (domain-specific) |
medvae-4-3_cxr.ckpt | MedVAE 4_3 (3×64×64) | MIMIC-CXR chest X-ray | Paper main result (domain-specific) |
medvae-4-3_mrnet.ckpt | MedVAE 4_3 (3×64×64) | MRNet knee MRI | Paper main result (domain-specific) |
sdvae_brats.ckpt | SD-VAE (4×32×32) | BraTS 2023 | Baseline (natural-image SD-VAE) |
sdvae_cxr.ckpt | SD-VAE (4×32×32) | MIMIC-CXR | Baseline (natural-image SD-VAE) |
sdvae_mrnet.ckpt | SD-VAE (4×32×32) | MRNet | Baseline (natural-image SD-VAE) |
klf4_brats.ckpt | KL-f4 (3×64×64) | BraTS 2023 | Natural-image control (matched geometry) |
klf4_cxr.ckpt | KL-f4 (3×64×64) | MIMIC-CXR | Natural-image control (matched geometry) |
klf4_mrnet.ckpt | KL-f4 (3×64×64) | MRNet | Natural-image control (matched geometry) |
medvae-4-1_brats.ckpt | MedVAE 4_1 (1×64×64) | BraTS | Capacity control (1-channel) |
medvae-4-1_cxr.ckpt | MedVAE 4_1 (1×64×64) | MIMIC-CXR | Capacity control (1-channel) |
medvae-4-1_mrnet.ckpt | MedVAE 4_1 (1×64×64) | MRNet | Capacity control (1-channel) |
medvae-4-4_brats.ckpt | MedVAE 4_4 (4×64×64) | BraTS | Higher-capacity anchor (4-channel) |
medvae-4-4_cxr.ckpt | MedVAE 4_4 (4×64×64) | MIMIC-CXR | Higher-capacity anchor (4-channel) |
medvae-4-4_mrnet.ckpt | MedVAE 4_4 (4×64×64) | MRNet | Higher-capacity anchor (4-channel) |
medvae-8-1_brats.ckpt | MedVAE 8_1 (1×32×32) | BraTS | Capacity control (8× downsample) |
medvae-8-1_cxr.ckpt | MedVAE 8_1 (1×32×32) | MIMIC-CXR | Capacity control (8× downsample) |
medvae-8-1_mrnet.ckpt | MedVAE 8_1 (1×32×32) | MRNet | Capacity control (8× downsample) |
medvae-8-4_brats.ckpt | MedVAE 8_4 (4×32×32) | BraTS | Domain-matched control (8× downsample) |
medvae-8-4_cxr.ckpt | MedVAE 8_4 (4×32×32) | MIMIC-CXR | Domain-matched control (8× downsample) |
medvae-8-4_mrnet.ckpt | MedVAE 8_4 (4×32×32) | MRNet | Domain-matched control (8× downsample) |
medvae-4-3 (3×64×64) is the domain-specific main result. klf4
(KL-f4, 3×64×64) is the natural-image VAE at the same latent geometry as the main result —
the matched-geometry control isolating domain vs. geometry. sdvae (SD-VAE, 4×32×32) is the
natural-image baseline. The remaining medvae-4-1/4-4/8-1/8-4 checkpoints vary channel count
(1↔4) and downsampling factor (4×↔8×) as capacity/geometry controls, with medvae-4-4
(4×64×64) serving as the higher-capacity anchor.1from huggingface_hub import hf_hub_download
2import torch
3
4# Download the main MedVAE BraTS checkpoint
5ckpt_path = hf_hub_download(
6 repo_id="sebasmos/latent-sr-weights",
7 filename="medvae-4-3_brats.ckpt"
8)
9state = torch.load(ckpt_path, map_location="cpu")1@article{cajas2026domain,
2 title = {Domain-Specific Latent Representations Improve the Fidelity of Diffusion-Based Medical Image Super-Resolution},
3 author = {{Sebastian Cajas} and {Ashaba Judith} and {Rahul Gorijavolu} and {Sahil Kapadia} and {Hillary Clinton Kasimbazi} and {Leo Kinyera} and {Emmanuel Paul Kwesiga} and {Sri Sri Jaithra Varma Manthena} and {Luis Filipe Nakayama} and {Ninsiima Doreen} and {Leo Anthony Celi}},
4 journal = {arXiv preprint arXiv:2604.12152},
5 year = {2026},
6 url = {https://arxiv.org/abs/2604.12152}
7}