Max Van Puyvelde, H. Ibrahim Gulluk, Wim Van Criekinge, Olivier Gevaert
4 min
Most medical foundation models currently rely on autoregressive (AR) generation, which produces text sequentially from left to right. This study investigates whether discrete diffusion language models—which generate text by iteratively denoising a fixed token canvas bidirectionally—can serve as a viable, more flexible alternative for radiology report drafting and medical visual question answering (VQA).
The researchers conducted a controlled comparison between a discrete diffusion model (DiffusionGemma-26B) and its same-size autoregressive sibling (Gemma-4-26B). By using an identical LoRA (Low-Rank Adaptation) recipe and training data, they isolated the generative paradigm as the only variable. They evaluated these models on three medical VQA datasets using a verbosity-robust LLM judge to ensure semantic accuracy, and measured inference speed and the ability to perform any-order infill (filling gaps in text based on context from both sides).
The diffusion model proved to be a competitive medical foundation model, matching or exceeding the performance of the autoregressive sibling across all tested VQA datasets. Notably, the diffusion model achieved this while decoding 3.5–4.4x faster than the AR model. Furthermore, the diffusion model demonstrated a unique capability for any-order infill: because it denoises the entire canvas bidirectionally, it can effectively fill gaps in a report by conditioning on text fragments both before and after the gap. In contrast, the AR model failed to utilize post-gap context, even when provided in the prompt, highlighting a fundamental architectural advantage for interactive clinical drafting.
Radiology reporting often requires editing or normalizing inconsistent text across different institutions. The ability to perform any-order infill allows radiologists to fix specific report fragments while the model intelligently fills in the surrounding text, a workflow that is inherently difficult for standard autoregressive models. This research suggests that shifting toward diffusion-based architectures could improve both the efficiency and the interactive utility of AI-assisted medical documentation.
Diffusion language models, which generate text by denoising a token canvas bidirectionally instead of emitting tokens left to right, have become competitive with autoregressive (AR) generation. Medical foundation models, however, remain almost entirely autoregressive. We adapt a mixture-of-experts diffusion language model, DiffusionGemma-26B, and benchmark it against its same-size AR sibling Gemma-4-26B under an identical LoRA recipe on medical visual question answering datasets, scored by a verbosity-robust LLM judge. Diffusion matches or exceeds AR on all of them, and the finetuned model (3.8B active) is competitive with frontier vision-language models; its decoding is also 3.5-4.4x faster. Beyond this parity, the diffusion model offers a drafting capability AR lacks: any-order infill. Because the canvas is denoised bidirectionally, a radiologist can fix report fragments and have the model fill the text between them, an operation inherent to diffusion but not to autoregression, which is subpar at it. This suits real reports, which are often terse or inconsistent across clinicians and institutions.
Alex: How did they make sure the comparison was fair? It seems like one model could simply have had better underlying knowledge than the other.
Sam: They controlled for that using a technique called Low-Rank Adaptation, or LoRA. Training a massive AI model from scratch is expensive and slow, so LoRA lets you fine-tune it by updating only a small fraction of its internal settings while keeping the rest frozen—like adjusting the seasoning in a recipe without rewriting the whole dish. By applying the exact same process to both models, the researchers ensured the only meaningful difference between them was the way they generated text.
Alex: So the comparison was genuinely apples-to-apples. It's not about which model had more raw knowledge going in—it's about which underlying architecture handles the task more effectively.
Sam: Precisely. And that's what makes the result meaningful. Autoregressive models remain the dominant standard, but this research suggests that for tasks requiring flexible, context-aware editing—like filling gaps in a medical draft—the bidirectional nature of diffusion models offers a clear, practical advantage. It's a useful pointer for where specialized clinical AI tools might develop next.
Alex: A thought-provoking comparison, and one with real implications for how AI gets used in clinical settings. Thanks for listening to ResearchPod.