DM4CT: Benchmarking Diffusion Models for Computed Tomography Reconstruction
Paper
β’ 2602.18589 β’ Published
β’ 1
This repository contains the pretrained pixel-space diffusion UNet used in the benchmark study DM4CT: Benchmarking Diffusion Models for CT Reconstruction (ICLR 2026).
This model learns a prior over CT reconstruction images using a denoising diffusion probabilistic model (DDPM). It operates directly in pixel space (not latent space).
UNet2DModel)This model is intended to be combined with data-consistency correction for CT reconstruction tasks.
Source: LoDoInd on Zenodo
Preprocessing steps:
The model learns an unconditional image prior over CT slices.
from diffusers import DDPMPipeline
# Load the pipeline
pipeline = DDPMPipeline.from_pretrained("jiayangshi/lodoind_pixel_diffusion")
pipeline.to("cuda")
# Generate a CT slice prior
image = pipeline().images[0]
image.save("generated_ct_slice.png")
@inproceedings{shi2026dmct,
title={{DM}4{CT}: Benchmarking Diffusion Models for Computed Tomography Reconstruction},
author={Shi, Jiayang and Pelt, Dani{\"{e}}l M and Batenburg, K Joost},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=YE5scJekg5}
}