DM4CT: Benchmarking Diffusion Models for Computed Tomography Reconstruction
Paper
β’ 2602.18589 β’ Published
β’ 1
This repository contains the pretrained pixel-space diffusion UNet presented in the paper DM4CT: Benchmarking Diffusion Models for Computed Tomography 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 as detailed in the DM4CT benchmark.
Source: AAPM Low Dose CT Grand Challenge
Preprocessing steps:
The model learns an unconditional image prior over medical CT slices.
You can use this model with the diffusers library:
from diffusers import DDPMPipeline
# Load the pretrained pipeline
pipeline = DDPMPipeline.from_pretrained("jiayangshi/lodochallenge_pixel_diffusion")
# Generate a sample (unconditional 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}
}