Model reference · open weights
synchrotron_pixel_diffusion is an open-weight image model from jiayangshi. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | jiayangshi |
|---|---|
| Type | Image models |
| Task | Image edit |
| Parameters (lead) | 256M |
| Runs with | diffusers |
| Released | 2026-02-25 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
This repository contains the pretrained pixel-space diffusion UNet presented in the paper DM4CT: Benchmarking Diffusion Models for Computed Tomography Reconstruction.
🔗 Project Page: https://dm4ct.github.io/DM4CT/ 🔗 Arxiv: https://arxiv.org/abs/2602.18589 🔗 Codebase: https://github.com/DM4CT/DM4CT
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.
Source: Zenodo
Preprocessing steps:
The model learns an unconditional image prior over CT slices.
You can use this model with the diffusers library as follows:
from diffusers import DDPMPipeline
# Load the pipeline
pipeline = DDPMPipeline.from_pretrained("jiayangshi/synchrotron_pixel_diffusion")
# Access the UNet model
model = pipeline.unet
model.eval()
@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}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys synchrotron-pixel-diffusion for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (synchrotron-pixel-diffusion below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/images/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"synchrotron-pixel-diffusion","prompt":"a red bicycle","size":"1024x1024"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.