Beyond Diffusion: Inductive Moment Matching
lumalabs.ai
Beyond Diffusion: Inductive Moment Matching
1–10 of 33 posts
Re: Beyond Diffusion: Inductive Moment Matching
#2Re: Beyond Diffusion: Inductive Moment Matching
#3Re: Beyond Diffusion: Inductive Moment Matching
#4Re: Beyond Diffusion: Inductive Moment Matching
#5Does this mean that diffusion models for text could scale inference compute to improve quality for a fixed-length output?
Re: Beyond Diffusion: Inductive Moment Matching
#6"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?
Re: Beyond Diffusion: Inductive Moment Matching
#7Re: Beyond Diffusion: Inductive Moment Matching
#8Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
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 that much better." You you might ask the model to improve the image from t=1.0 to t=0.25 and be almost done. It gets a side variable telling it how much improvement to make in each step.
I'm not sure this right, but that's what I got out of it by skimming the blog & paper.
Re: Beyond Diffusion: Inductive Moment Matching
#9Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
If you look at how a single step of the DDIM sampler interacts with the target timestep, it is actually just a linear function. This is obviously quite inflexible if we want to use it to represent a flexible function where we can choose any target timestep. So just add this as an argument to the neural network and then train it with a moment matching objective.
In general, I feel that analyzing a method's inference-time properties before training it can be helpful to not only diffusion models, but also LLMs including various recent diffusion LLMs, which prompted me to write a position paper in the hopes that others develop cool new ideas (https://arxiv.org/abs/2503.07154).
Re: Beyond Diffusion: Inductive Moment Matching
#10Anyone willing to give an intuitive summary of what they did mathwise? The math in the paper is super ugly to churn through.
In particular, we examine the one-step iterative process of DDIM [39, 19, 21] and show that it has limited capacity with respect to the target timestep under the current denoising network design. This can be addressed by adding the target timestep to the inputs of the denoising network [15].
Interestingly, this one fix, plus a proper moment matching objective [5] leads to a stable, single-stage algorithm that surpasses diffusion models in sample quality while being over an order of magnitude more efficient at inference [50]. Notably, these ideas do not rely on denoising score matching [46] or the score-based stochastic differential equations [41] on which the foundations of diffusion models are built.