Can anyone share insight into how this is different from consistency models? The insight seems quite similar?
Consistency models is a special case of IMM where you do moment matching with 1 sample from each distribution (i.e., you cannot match distributions properly). See Fig 5 for an ablation study, of course, adding more samples when you are doing moment matching makes it more stable during training :)
Beyond Diffusion: Inductive Moment Matching
21–30 of 33 posts
Re: Beyond Diffusion: Inductive Moment Matching
#22this went over my head quickly; read through it a few times, than asked GPT for a summary on my level of understanding, which does clear it up for me ,personally , to grasp the overall idea: Alright, imagine you have a big box of LEGO bricks, and you're trying to build a really cool spaceship. There are two main ways people usually build things like this: Step-by-step (Autoregressive Models) – Imagine you put one LEG…
Re: Beyond Diffusion: Inductive Moment Matching
#23this went over my head quickly; read through it a few times, than asked GPT for a summary on my level of understanding, which does clear it up for me ,personally , to grasp the overall idea: Alright, imagine you have a big box of LEGO bricks, and you're trying to build a really cool spaceship. There are two main ways people usually build things like this: Step-by-step (Autoregressive Models) – Imagine you put one LEG…
So like intuitive photographic memory?
You make the way of reaching your target faster.
Re: Beyond Diffusion: Inductive Moment Matching
#24Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
Last author here (I also did the DDIM paper, https://arxiv.org/abs/2010.02502 ). I know this is going to be very tricky math-wise (and in the paper we just wrote the most general thing to make reviewers happy), so I tried to explain the idea more easily under the blog post ( https://lumalabs.ai/news/inductive-moment-matching ). If you look at how a single step of the DDIM sampler interacts with the target timestep, i…
Also regarding linearity, why is it inflexible? It seems quite convenient that a simple linear interpolation is used for reconstruction, besides, even in DDIM, the directions towards the final target changes at each step as the images become less noisy. In standard diffusion models or even flow matching, denoising is always equal to the prediction of the original data + direction from current timestep to the timestep t'. Just to be clear, it is intuitive that such models are inferior in few-step generations since they don't optimise for test time efficiency (in terms of the tradeoff of quality vs compute), but it's unclear what inflexibility exists there beyond this limitation.
Clearly there's no expected benefit in quality if all timesteps are used in denoising?
Re: Beyond Diffusion: Inductive Moment Matching
#25Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
In normal diffusion you train a model to take lots of tiny steps, all the same small size. e.g. "You're gonna take 20 steps, at times [1.0, 0.95, 0.90, 0.85...]" and each time the model takes that small fixed-size step to make the image look better. Here they train a model to say "I'm gonna ask you to take a step from time B to A - might be a small step, might be a big step - but whatever size it is, make the image t…
Re: Beyond Diffusion: Inductive Moment Matching
#26"Inference can generally be scaled along two dimensions: extending sequence length (in autoregressive models), and augmenting the number of refinement steps (in diffusion models)." Does this mean that diffusion models for text could scale inference compute to improve quality for a fixed-length output?
Yes, although so far it seems the main advantage of text diffusion models is that they're really, really fast. Iterations reach an asymptote very quickly.
Re: Beyond Diffusion: Inductive Moment Matching
#27Re: Beyond Diffusion: Inductive Moment Matching
#28Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
Re: Beyond Diffusion: Inductive Moment Matching
#29this went over my head quickly; read through it a few times, than asked GPT for a summary on my level of understanding, which does clear it up for me ,personally , to grasp the overall idea: Alright, imagine you have a big box of LEGO bricks, and you're trying to build a really cool spaceship. There are two main ways people usually build things like this: Step-by-step (Autoregressive Models) – Imagine you put one LEG…
Re: Beyond Diffusion: Inductive Moment Matching
#30Earlier quoted context omitted.
Yes, although so far it seems the main advantage of text diffusion models is that they're really, really fast. Iterations reach an asymptote very quickly.
I don’t know which text diffusion models you’re talking about, the latest and greatest is this one: https://arxiv.org/abs/2502.09992 and it’s extremely slow – couple of orders of magnitude slower than a regular LLM, mainly because it does not support KV caching, and requires many full sequence processing steps per token.
On the other hand if there was a theoretical reason why text diffusion models could never be faster than autoregressive transformers it would be notable.