KOALA: A Kalman Optimization Algorithm with Loss Adaptivity
Aram Davtyan, Sepehr Sameni, Llukman Cerkezi, Givi Meishvilli, Adam Bielski, Paolo Favaro
TL;DR
KOALA treats iteration-time neural-network loss as a noisy measurement and uses Kalman filtering to estimate model parameters $x$ in a scalable way. It introduces loss-adaptive target risks $\hat{L}^\text{target}_k$, online estimates of measurement and state noise $R_k$ and $Q_k$, and optional momentum dynamics by augmenting the state to include velocities, yielding KOALA-M. The paper provides a convergence analysis for KOALA-V under two target-risk schemes and demonstrates strong empirical performance across vision and NLP benchmarks, with modest memory overhead and automatic adaptation to minibatch noise and learning-rate scheduling. The approach offers a practical, self-tuning alternative to traditional optimizers that preserves linear-time complexity and can integrate with advanced training tricks like Lookahead and SWA, making it suitable for large-scale, high-dimensional neural models.
Abstract
Optimization is often cast as a deterministic problem, where the solution is found through some iterative procedure such as gradient descent. However, when training neural networks the loss function changes over (iteration) time due to the randomized selection of a subset of the samples. This randomization turns the optimization problem into a stochastic one. We propose to consider the loss as a noisy observation with respect to some reference optimum. This interpretation of the loss allows us to adopt Kalman filtering as an optimizer, as its recursive formulation is designed to estimate unknown parameters from noisy measurements. Moreover, we show that the Kalman Filter dynamical model for the evolution of the unknown parameters can be used to capture the gradient dynamics of advanced methods such as Momentum and Adam. We call this stochastic optimization method KOALA, which is short for Kalman Optimization Algorithm with Loss Adaptivity. KOALA is an easy to implement, scalable, and efficient method to train neural networks. We provide convergence analysis and show experimentally that it yields parameter estimates that are on par with or better than existing state of the art optimization algorithms across several neural network architectures and machine learning tasks, such as computer vision and language modeling.
