Tagged articles
3 articles
Page 1 of 1
AI Algorithm Path
AI Algorithm Path
Oct 15, 2025 · Artificial Intelligence

Building a Flow Matching Model from Scratch: Theory Explained

This article walks through the theory behind flow‑matching generative models, contrasting them with diffusion models, detailing the velocity‑field formulation, training objective, and sampling procedure, and includes visual illustrations of the core concepts.

Diffusion ModelsGenerative ModelsODE
0 likes · 8 min read
Building a Flow Matching Model from Scratch: Theory Explained
Data Party THU
Data Party THU
Aug 9, 2025 · Artificial Intelligence

How SADA Boosts Diffusion Model Sampling Speed by Up to 1.8× Without Losing Quality

The paper introduces SADA (Stability‑guided Adaptive Diffusion Acceleration), a novel paradigm that dynamically allocates sparsity per token using a unified stability criterion, enabling efficient ODE‑based sampling for diffusion and flow‑matching models, achieving up to 1.8× speedup with negligible fidelity loss across SD‑2, SDXL, Flux, ControlNet and MusicLDM.

Diffusion ModelsODEgenerative AI
0 likes · 5 min read
How SADA Boosts Diffusion Model Sampling Speed by Up to 1.8× Without Losing Quality
Model Perspective
Model Perspective
Jun 5, 2022 · Fundamentals

How to Solve ODEs Numerically in Python with SciPy’s odeint

This article explains how to obtain numerical solutions for ordinary differential equations in Python using SciPy’s odeint function, demonstrates several example problems including a simple ODE, a system converted from a second‑order equation, and the chaotic Lorenz model, and provides complete code snippets.

Lorenz AttractorNumerical MethodsODE
0 likes · 6 min read
How to Solve ODEs Numerically in Python with SciPy’s odeint