Schedule-Free Optimizers in PyTorch.
Authors: Aaron Defazio, Xingyu Yang, Konstantin Mishchenko, Ashok Cutkosky, Harsh Mehta, Ahmed Khaled
TLDR Faster training without schedules - no need to specify the stopping time/steps in advance!
pip install schedulefree
Primary implementations are SGDScheduleFree
and AdamWScheduleFree
.
Schedule-Free learning replaces the momentum of an underlying optimizer with a combination of interpolation and averaging. In the case of gradient descent, the Schedule-free update is:
Here
As the name suggests, Schedule-free learning does not require a decreasing learning rate schedule, yet typically out-performs, or at worst matches, SOTA schedules such as cosine-decay and linear decay. Only two sequences need to be stored at a time (the third can be computed from the other two on the fly) so this method has the same memory requirements as the base optimizer (parameter buffer + momentum).
We provide both AdamW and SGD versions in this repo.
Since our optimizer uses two different points for gradient calls and test/val loss calculations, it's necessary to switch the param buffer between the two during training. This is done by calling optimizer.train()
at the same place you call model.train()
and optimizer.eval()
at the same place you call model.eval()
.
If your code supports PyTorch Optimizer step closures, you can use the closure forms of the optimizers, which do not require the .train()
and .eval()
calls.
Examples of using the schedulefree
package can be found in the examples
folder. These include:
- Image classification (MNIST) using Convnets*
- More examples to be added
*Example is modified from Pytorch Examples Repo.
- If your model uses BatchNorm, additional modifications are required for test/val evaluations to work correctly. Right before eval, something like the following:
model.train()
optimizer.eval()
for batch in itertools.islice(train_loader, 50):
_ = self.model(batch)
model.eval()
This will replace the training_mean
/training_var
cache (which is updated in each forward pass when in model.train() mode) with values calculated at
- Many code bases use additional features that may not be compatible without additional changes. For instance, if the parameters are cached in fp16, the cached versions will need to be updated manually to ensure the correct
$x$ sequence is used for evaluation, not the$y$ sequence. Some GradScalers do this. - Training is more sensitive to the choice of
$\beta$ than you may expect from standard momentum. Our default of$0.9$ works on most problems but it may be necessary to increase the value to$0.95$ or$0.98$ particually for very long training runs. - There is no need to use a learning rate scheduler, however the code is compatible with one.
- Using learning rate warmup is recommended. This is supported through the
warmup_steps
parameter. - This method does require tuning - it won't necessarily out-perform a schedule approach without also tuning regularization and learning rate parameters.
- For SGD, a learning rate 10x-50x larger than classical rates seems to be a good starting point.
- For AdamW, learnings rates in the range 1x-10x larger than with schedule based approaches seem to work.
- Our method can also be implemented as a wrapper around a base optimizer, where the momentum of the base optimizer is disabled. We didn't do that as PyTorch's Adam implementation would still allocate memory for it's momentum buffer
exp_avg
even if we don't use it.
See the License file.
Schedule-Free learning can be seen as an interpolation between primal averaging (
Our method is also related to Nesterov's accelerated method (Nesterov, 1983), which can be written in the following form:
Our approach has the same three sequences, but uses very different weights, and crucially, does not include an increasing learning rate over time, which is essential for accelerated rates with Nesterov's method. We also use different weight sequences for the interpolation operation versus the averaging operation.
Tail averaging approaches such as Stochastic Weight Averaging (Izmailov et al., 2018) and LAtest Weight Averaging (Kaddour, 2022; Sanyal et al., 2023) combine averaging with large or cyclic learning rates. They still require the use of a schedule, introduce additional hyper-parameters to tune, and require additional memory compared to our technique. It is also possible to use SWA and LAWA on top of our approach, potentially giving further gains.
Portes Et. Al. (2022) use cyclic learning rate schedules with increasing cycle periods to give a method that explores multiple points along the Pareto frontier of training time vs eval performance. Each point at the end of a cycle is an approximation to the model from a tuned schedule ending at that time. Our method gives the entire frontier, rather than just a few points along the path.
Exponential moving averages (EMA) of the iterate sequence are used in the popular Lookahead optimizer (Zhang et al., 2019). The Lookahead method can be seen as the EMA version of primal averaging, just as exponential weight averaging is the EMA version of Polyak-Ruppert averaging. Our extra interpolation step can potentially be used in combination with the lookahead optimizer also.