Deep Neural Network Training with Frank-Wolfe
Sebastian Pokutta, Christoph Spiegel, Max Zimmer
TL;DR
This work investigates projection-free optimization for deep neural networks by applying stochastic Frank–Wolfe methods to training with convex, constrained parameter regions. By systematically evaluating multiple feasible regions (e.g., $L^2$-norm balls, hypercubes, $L^1$-norm-based polytopes, simplices, and permutahedra) and FW variants, it demonstrates that appropriately chosen constraints can yield state-of-the-art or competitive accuracy on CIFAR-10/100 and ImageNet while shaping learned representations and sparsity. The study finds that SFW, especially with momentum, often matches or surpasses unconstrained SGD with weight decay in several benchmarks, and that constraint geometry strongly impacts feature encoding and sparsity patterns. Additionally, the paper provides practical guidance on hyperparameter decoupling from region diameter and discusses the computational trade-offs of various stochastic FW algorithms, making constraint-based training a viable alternative to projection-based methods in deep learning, with code released for reproducibility.
Abstract
This paper studies the empirical efficacy and benefits of using projection-free first-order methods in the form of Conditional Gradients, a.k.a. Frank-Wolfe methods, for training Neural Networks with constrained parameters. We draw comparisons both to current state-of-the-art stochastic Gradient Descent methods as well as across different variants of stochastic Conditional Gradients. In particular, we show the general feasibility of training Neural Networks whose parameters are constrained by a convex feasible region using Frank-Wolfe algorithms and compare different stochastic variants. We then show that, by choosing an appropriate region, one can achieve performance exceeding that of unconstrained stochastic Gradient Descent and matching state-of-the-art results relying on $L^2$-regularization. Lastly, we also demonstrate that, besides impacting performance, the particular choice of constraints can have a drastic impact on the learned representations.
