Modèle Updated 2026-04
Diffusion Model
Definition
A diffusion model is an AI architecture that generates images starting from random noise and progressively refining it.
See also in the glossary
G
Generative AI
Generative AI refers to artificial intelligence systems capable of creating original content: text, images, video, audio, code.
T
Text-to-Image
Text-to-Image refers to generating images from text descriptions using generative AI models.
D
Deep Learning
Deep Learning is a subset of Machine Learning using multi-layered neural networks to learn complex representations from raw data.
T
Text-to-Video
Text-to-Video generates videos from text descriptions using generative AI.
Tools that use diffusion model
Frequently Asked Questions
How does a diffusion model work?
The model learns to add noise to an image then remove it. At generation, it starts from pure noise and 'denoises' step by step, guided by your prompt, to create a coherent image.
Diffusion vs GAN, what's the difference?
GANs use two competing networks. Diffusion models use an iterative denoising process. In 2026, diffusion dominates for quality and diversity.
What is a diffusion model?
A diffusion model is a generative AI architecture that creates images, audio or video by starting from random noise and gradually denoising it into a coherent result, guided by a text prompt. It powers tools like Stable Diffusion, DALL-E, Midjourney and OpenAI's Sora. Diffusion models largely replaced GANs after 2021 thanks to higher image quality, more stable training and greater output diversity.
What is the difference between a diffusion model and an LLM?
They solve different problems. A diffusion model generates continuous media (images, video, audio) by iterative denoising, and usually relies on a U-Net or diffusion transformer. An LLM, like GPT-4 or Claude, is a transformer that predicts text token by token. Many image tools combine both: an LLM-style text encoder interprets your prompt, while a diffusion model renders the pixels.
Is GPT-4 a diffusion model?
No. GPT-4 is a large language model based on the transformer architecture; it generates text autoregressively, predicting one token at a time. Diffusion models work by denoising and target images, audio or video instead. The confusion arises because OpenAI builds both: GPT-4 for text and DALL-E or Sora for visual generation, which do use diffusion-style methods.
Is a diffusion model generative AI?
Yes. A diffusion model is a core type of generative AI: it produces new content rather than classifying existing data. By learning to reverse a noise-adding process, it can synthesize original images, video and audio from a prompt. Alongside GANs, transformers and VAEs, diffusion is one of the dominant generative approaches, and currently the default for high-quality image and video tools.
What is an example of a diffusion model?
Stable Diffusion is the best-known example: an open-source model that turns text prompts into images. Other widely used diffusion-based systems include DALL-E 3 (OpenAI), Midjourney for artistic imagery, Imagen (Google) and Sora for video. On the research side, foundational families include DDPM and latent diffusion, the technique that made Stable Diffusion fast enough to run on consumer GPUs.
What is the main idea behind diffusion models?
The core idea is learning to reverse a gradual corruption process. During training, the model watches clean images slowly turn into pure noise, step by step, and learns to predict and undo that noise. At generation time it runs the process backward: starting from random noise and denoising it over many steps into a structured image that matches the prompt. Quality improves with more denoising steps.
How do you train a diffusion model?
You train it on a large dataset of images (often paired with text captions). The training loop adds a known amount of random noise to each image, then teaches the model to predict that noise so it can be removed. Repeated over millions of examples, the model learns to denoise from any level. Training from scratch is compute-heavy, so most users instead fine-tune existing checkpoints with LoRA or DreamBooth.