Writing
July 11, 2026 · 6 min read

A 1.3-billion-parameter chest x-ray generator, and the governance gap it opens

A new paper trains the largest specialist generative model for chest radiographs to date on a rectified flow transformer, producing synthetic x-rays clinical experts can't distinguish from real ones — I break down why the architecture choice matters and what fidelity this good actually demands of the teams who use it.

generative-aimedical-imagingrectified-flowfoundation-modelsai-researchsynthetic-data

A team led by Fabio De Sousa Ribeiro, with Ben Glocker and collaborators, just put out "Scaling Generative Foundation Models for Chest Radiography with Rectified Flow Transformers" (arXiv:2606.19460). The claim in the abstract is specific: a 1.3-billion-parameter model, trained for 1.6 trillion tokens on 1.2 million curated radiographs, that produces synthetic chest x-rays clinical experts could not reliably tell apart from real ones. The project goes by RadiT.

"AI generates a convincing fake x-ray" undersells what's actually new here. GANs have produced plausible-looking chest films since around 2018. What's different is the combination of scale, controllability, and a specific generative mechanism — rectified flow — that most prior work in this domain hasn't used. I want to walk through why that combination matters, and where I think the result should make production teams cautious rather than impressed.

What RadiT actually is

The scale point is worth sitting with. Most chest radiograph generative work to date has fine-tuned an adapter on top of a general-purpose latent diffusion model, using public datasets in the low hundreds of thousands of images. RadiT trains from scratch at more than 1.3B parameters, on a curated, heterogeneous aggregate of 1.2M radiographs with clinical expert-guided metadata — demographic subgroup, acquisition view, and roughly a dozen pathology labels attached to each image. That metadata is what makes the model controllable rather than just generative: you can condition generation and editing on a specific view, a specific demographic subgroup, and a specific pathology, rather than sampling an unconditioned image and hoping it matches what you need.

Why rectified flow, not diffusion

Standard diffusion models learn to reverse a stochastic noising process. Training corrupts data with Gaussian noise over many steps; the network learns to predict and remove a small increment of that noise at each step. The resulting sampling trajectory, from pure noise to image, is curved and high-entropy, which is why generation typically needs tens to hundreds of network evaluations to walk it back.

Rectified flow reframes generation as learning a direct transport: an ODE velocity field that moves a batch of noise samples to a batch of data samples along the straightest path the data allows. It's part of the same 2022-vintage line of work — alongside flow matching and stochastic interpolants — that also underlies Stable Diffusion 3 and Flux. Straighter paths mean each sampling step covers more ground, so you need far fewer of them to reach a comparable-quality image.

Diffusion's curved, many-step noise-to-image path compared with rectified flow's near-straight, few-step path

For a specialist domain, this isn't a cosmetic swap. At the scale of 1.2M training images and 1.6T tokens, sampling efficiency compounds. It matters even more downstream, if the intent is to generate synthetic data in volume — every additional pathology-view-demographic combination you want to synthesize multiplies the sampling cost, and a model that needs a handful of function evaluations instead of a thousand is the difference between a usable data-generation pipeline and one that isn't.

What the controllability is actually for

The paper is explicit that the motivation isn't image quality for its own sake. Diagnostic AI trained on one hospital's scanner mix and patient population tends to degrade when it meets another hospital's equipment and demographics — a generalization problem that shows up constantly in clinical ML and is expensive to fix with real data, because acquiring and labeling more clinical imaging is slow and privacy-constrained. A controllable generator lets you target the specific view, subgroup, or pathology combination your training set is missing, and synthesize it directly, without new patient acquisition.

Run the same model in the other direction and it becomes a robustness probe: generate a counterfactual edit — same underlying anatomy, one attribute changed — and check whether a diagnostic classifier's prediction moves for the reason you changed, or for a spurious correlation the classifier picked up instead.

Pipeline: curated 1.2M-radiograph dataset with demographic, view, and pathology metadata feeds RadiT, a 1.3B-parameter rectified flow transformer, producing controllable synthesis and editing that branches into dataset diversification and robustness stress-testing

The claim that should make you pause

"Indistinguishable from real radiographs to clinical experts" is the sentence I'd flag, and not as a compliment. A model good enough to pass a radiologist's read is also good enough to contaminate a benchmark, quietly inject the generator's own biases into what's labeled a "diversified" dataset, or get used — deliberately or by accident — to pad a training set with images that look clinically plausible but don't encode real clinical reality. The paper treats expert-indistinguishable fidelity as the achievement. I'd treat it as the point at which synthetic-data governance stops being optional: every synthetic image entering a training or evaluation pipeline needs provenance tracking, the same way you'd track lineage on a dataset partly built from an LLM's own outputs, precisely because a human reviewer can no longer catch the difference by looking.

What I take from this as an engineering call

I don't build medical imaging systems, but I do run generative and agentic pipelines where synthetic data quality decides whether an evaluation can be trusted. Two things from RadiT generalize past radiology. First, rectified flow's straight-path sampling is worth adopting wherever you're generating synthetic data at volume — sample cost scales with how many you need, and a model that needs a handful of steps instead of hundreds changes what's economically generatable. Second, conditioning built into the base model during pretraining, rather than bolted on afterward with an adapter, is what turns a generative model from a demo into an instrument — something you can point at a specific gap in a dataset or a specific failure mode in a downstream classifier, on purpose, instead of sampling and hoping. The fidelity is the part that gets the headline. The governance question it raises is the part that determines whether it's safe to use.

References
  1. 01Scaling Generative Foundation Models for Chest Radiography with Rectified Flow Transformers (arXiv:2606.19460)
  2. 02RadiT project page