Kernel-Thinned Mean Field Langevin Dynamics
- KT-MFLD is an advanced simulation framework that transforms standard mean-field Langevin dynamics by replacing full particle interactions with a kernel-thinned coreset.
- It reduces per-iteration complexity from O(N²) to O(N^(3/2)) via the kt-split algorithm, which selects representative particles while tightly controlling integration errors.
- The approach retains rigorous convergence guarantees under regular conditions, making it effective for neural network training, distribution quantization, and predictive posterior computations.
Kernel-Thinned Mean Field Langevin Dynamics (KT-MFLD) is an algorithmic framework for simulating mean-field interacting particle systems under entropy-regularized optimization, designed to accelerate the computation relative to standard Mean Field Langevin Dynamics (MFLD). By employing kernel thinning to construct a coreset of representative particles, KT-MFLD reduces the per-iteration complexity from quadratic in the number of particles to , while retaining similar convergence properties under regularity assumptions. Applications span the training of neural networks in the mean-field regime, distribution quantization, and the computation of predictively-oriented posteriors in post-Bayesian frameworks (Chen et al., 27 May 2026).
1. Entropy-Regularized Mean Field Optimization
KT-MFLD is developed for problems where the objective is to learn a probability measure on by minimizing an entropy-regularized energy functional over the Wasserstein-2 space . The functional is of the form
where
- is the differential entropy,
- are regularization parameters,
- is a task-specific energy given as
with a latent data distribution, 0 convex and 1-Lipschitz, and kernels 2 smooth with bounded derivatives. For linear 3, the optimizer 4 is a Gibbs measure. For nonlinear 5, such as those arising in deep learning and distributional approximation, direct solutions are unavailable, motivating particle-based simulation (Chen et al., 27 May 2026).
2. Mean-Field Langevin Dynamics and its Computational Bottleneck
The entropy-regularized optimization problem induces a gradient flow in Wasserstein-2 space, represented by the McKean–Vlasov SDE: 6 with law 7, where the functional derivative 8 gives rise to the drift term. Simulating this SDE numerically with 9 particles and empirical measure 0 involves updates of the form
1
with
2
The double sum in the interaction terms yields 3 time per iteration, limiting scalability for large 4 (Chen et al., 27 May 2026).
3. Kernel Thinning and Particle Coresets
Kernel thinning provides a mechanism to select a representative subset (coreset) of the particle system such that empirical averages with respect to a reproducing kernel Hilbert space (RKHS) are preserved up to small error. Letting 5 be a positive-definite kernel with RKHS 6, the integration error for a function 7 is
8
where 9 and 0 is the coreset. The kt-split algorithm [Shetty et al., 2021] produces such a coreset in 1 time, guaranteeing, with high probability,
2
using 3. This error rate surpasses that of uniform random sampling, which achieves only 4 for the same subset size. This suggests that thinning via kt-split enables efficient reduction of the particle set while controlling integration errors relevant for particle approximations (Chen et al., 27 May 2026).
4. The KT-MFLD Algorithm
KT-MFLD modifies standard MFLD by replacing the full empirical particle system in the drift computation with a thinned coreset. At each step:
- Generate a coreset 5 of size 6 using kt-split.
- Update all 7 particles with the drift evaluated against 8: 9 where
0
The per-iteration computational complexity is dominated by:
- Kernel thinning (kt-split): 1,
- Drift evaluation via the coreset: 2.
This results in an overall cost of 3 per iteration, yielding significant gains for large 4 without sacrificing drift estimation accuracy up to logarithmic factors (Chen et al., 27 May 2026).
5. Convergence Guarantees
Under regularity conditions (convexity, Lipschitzness, and boundedness of 5; RKHS membership and regularity for 6, 7), rigorous quantitative convergence bounds hold for KT-MFLD. Specifically, letting 8 denote the joint law of the 9 particles after 0 steps with stepsize 1, there exist constants 2 and
3
such that for all 4,
5
where 6 captures time discretization error. The only additional bias term relative to standard MFLD is 7, a significant improvement over random subsampling which incurs 8 error. The proof leverages RKHS control of drift error, energy decay via a Grönwall-type inequality, and exponential KL contraction by log-Sobolev inequality (Chen et al., 27 May 2026).
6. Empirical Validation and Applications
KT-MFLD has been empirically validated on three representative applications, with experiments designed to match overall compute (9 for KT-MFLD vs. 0 for full MFLD):
- Student–Teacher Two-Layer Neural Network: A teacher network of width 100 produces noisy labels; a student network trained via MFLD is compared at varying widths 1. KT-MFLD achieves lower test loss than both random thinning and random-batch baselines, and rivals standard MFLD accuracy at much higher 2 for equivalent resources.
- Quantization by Maximum Mean Discrepancy (MMD): Particles are optimized to match a Gaussian mixture target under squared MMD. KT-MFLD attains smaller MMD error than alternative subsampling approaches; increasing the thinning parameter (i.e., raising coreset size) can recover full-MFLD accuracy.
- Predictively-Oriented Posteriors (PrO): In a misspecified Lotka–Volterra model, KT-MFLD is used for matching predictive distributions to data via a kernel scoring rule and entropy regularization. When evaluated with Kernel Gradient Discrepancy (KGD), KT-MFLD outperforms random thinning/batching for a given wall-clock budget. The full MFLD is restricted to small 3 due to computational cost.
In all cases, KT-MFLD delivers near-MFLD statistical fidelity while reducing per-iteration cost from 4 to 5 (Chen et al., 27 May 2026).
7. Methodological Context and Related Directions
KT-MFLD integrates developments in entropy-regularized mean-field optimization, stochastic interacting particle methods, and coreset construction via kernel thinning. The kt-split algorithm by Shetty et al. is crucial in enabling efficient particle selection, with RKHS-based error control guaranteeing higher fidelity than naive random sampling. A plausible implication is that KT-MFLD extends the practical scaling of mean-field particle methods to larger regimes without the quadratic bottleneck. These methodological advances may also provide a template for accelerating other interacting-particle-based algorithms in Bayesian computation and statistical physics (Chen et al., 27 May 2026).