Automatic learning rate optimiser based on Prodigy and Schedule-Free
Project description
Prodigy + ScheduleFree
Eliminating hyperparameters, one commit at a time.
Current status: Experimental
Installation
pip install prodigy-plus-schedule-free
Usage
from prodigyplus.prodigy_plus_schedulefree import ProdigyPlusScheduleFree
optimizer = ProdigyPlusScheduleFree(model.parameters(), lr=1.0, betas=(0.9, 0.99), beta3=None,
weight_decay=0.0, weight_decay_by_lr=True,
use_bias_correction=False, d0=1e-6, d_coef=1.0,
prodigy_steps=0, eps=1e-8,
split_groups=True, split_groups_mean=True,
factored=True, fused_back_pass=False, use_stableadamw=True,
use_muon_pp=False, use_cautious=False, use_grams=False,
use_adopt=False, stochastic_rounding=True)
As with the reference implementation of schedule-free, a constant scheduler should be used, along with the appropriate
calls to optimizer.train() and optimizer.eval(). See the schedule-free documentation for more details: https://github.com/facebookresearch/schedule_free
Details
An optimiser based on Prodigy that includes schedule-free logic and much, much lower memory usage, the aim being to remove the need to set any hyperparameters. Of course, that's never the case with any optimiser, but hopefully, this comes close!
Hyperparameters eliminated: Learning rate (Prodigy), LR scheduler (ScheduleFree), epsilon (Adam-atan2, optional, not enabled by default).
Based on code from:
Incorporates improvements from these pull requests (credit to https://github.com/dxqbYD, https://github.com/sangoi-exe and https://github.com/nhamanasu):
- https://github.com/konstmish/prodigy/pull/23
- https://github.com/konstmish/prodigy/pull/22
- https://github.com/konstmish/prodigy/pull/20
- https://github.com/facebookresearch/schedule_free/pull/54
If you do use another scheduler, linear or cosine is preferred, as a restarting scheduler can confuse Prodigy's adaptation logic.
Leave lr set to 1 unless you encounter instability. Do not use with gradient clipping, as this can hamper the
ability for the optimiser to predict stepsizes. Gradient clipping/normalisation is already handled in the following configurations:
use_stableadamw=True,eps=1e8(or any reasonable positive epsilon. This is the default.)eps=None(Adam-atan2, scale invariant. Will disable StableAdamW if enabled.)
By default, split_groups and split_groups_mean are set to True, so each parameter group will have its own d values, however,
they will all use the harmonic mean for the dynamic learning rate. To make each group use its own dynamic LR, set split_groups_mean to False.
To use the reference Prodigy behaviour where all groups are combined, set split_groups to False.
The optimiser uses low-rank approximations for the second moment, much like Adafactor. There should be little to no difference
in training performance, but your mileage may vary. If you encounter problems, you can try disabling factorisation by
setting factored to False.
The optimiser also supports fused backward pass to significantly lower
gradient memory usage. The fused_back_pass argument must be set to True so the optimiser knows not to perform the regular step. Please note however that
your training scripts / UI of choice must support the feature for generic optimisers -- as of January 2025, popular trainers such as OneTrainer and Kohya
hard-code which optimisers have fused backward pass support, and so this optimiser's fused pass will not work out of the box with them.
In some scenarios, it can be advantageous to freeze Prodigy's adaptive stepsize after a certain number of steps. This
can be controlled via the prodigy_steps settings. It's been suggested that all Prodigy needs to do is achieve "escape velocity"
in terms of finding a good LR, which it usually achieves after ~25% of training, though this is very dependent on batch size and epochs.
This setting can be particularly helpful when training diffusion models, which have very different gradient behaviour than what most optimisers are tuned for. Prodigy in particular will increase the LR forever if it is not stopped or capped in some way (usually via a decaying LR scheduler).
Experimental features
Adam-atan2: Enabled by setting eps to None. Outlined in Scaling Exponents Across Parameterizations and Optimizers,
you can use atan2 in place of the regular division plus epsilon found in most Adam-style optimisers. This makes updates scale-invariant, and removes the need
to tweak the epsilon. Disabled by default.
Muon: Enabled by setting use_muon_pp to True. This changes the fundamental behaviour of the optimiser for compatible parameters from AdamW to SGD
with a quasi-second moment based on the RMS of the updates. As explained by Keller Jordan, and demonstrated
(in various forms) by optimisers such as Shampoo, SOAP and Jordan's Muon, applying preconditioning to the gradient can improve convergence. However,
this approach may not work in some situations (small batch sizes, fine-tuning) and as such, is disabled by default.
C-Optim: Enabled by setting use_cautious to True. Outlined in Cautious Optimizers: Improving Training with One Line of Code.
Applies a simple modification to parameter updates that promotes values that are aligned with the current gradient. This should result in faster convergence. While not 1:1 compatible with schedule-free, the implementation by nhamanasu does work, though improvements may be limited.
Grams: Enabled by setting use_grams to True. Described in Grams: Gradient Descent with Adaptive Momentum Scaling.
In a similar vein to C-Optim, the parameter update is modified to separate the update direction from momentum. Thanks to gesen2egee for the pull request.
ADOPT: Enabled by setting use_adopt to True. A partial implementation of ADOPT: Modified Adam Can Converge with Any β2 with the Optimal Rate, as we only update the second moment after the parameter update, so as to exclude the current gradient. Disabled by default.
MNIST results
Generated from the MNIST example in the schedule-free repository, using the default settings.
Prodigy LR: 0.000832
Test set: Average loss: 0.0472, Accuracy: 9836/10000 (98.36%)
Test set: Average loss: 0.0345, Accuracy: 9879/10000 (98.79%)
Test set: Average loss: 0.0305, Accuracy: 9905/10000 (99.05%)
Test set: Average loss: 0.0295, Accuracy: 9912/10000 (99.12%)
Test set: Average loss: 0.0296, Accuracy: 9916/10000 (99.16%)
Test set: Average loss: 0.0295, Accuracy: 9921/10000 (99.21%)
Test set: Average loss: 0.0305, Accuracy: 9916/10000 (99.16%)
Test set: Average loss: 0.0300, Accuracy: 9915/10000 (99.15%)
Test set: Average loss: 0.0305, Accuracy: 9917/10000 (99.17%)
Test set: Average loss: 0.0310, Accuracy: 9919/10000 (99.19%)
Test set: Average loss: 0.0326, Accuracy: 9923/10000 (99.23%)
Test set: Average loss: 0.0338, Accuracy: 9928/10000 (99.28%)
Test set: Average loss: 0.0345, Accuracy: 9925/10000 (99.25%)
Test set: Average loss: 0.0354, Accuracy: 9925/10000 (99.25%)
Recommended usage
Earlier versions of the optimiser recommended setting prodigy_steps equal to 5-25% of your total step count, but this should not be necessary with recent updates. That said,
you can still use the setting to make sure the LR does not change after a certain step, and free any memory used by Prodigy for adapting the step size.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prodigy_plus_schedule_free-1.8.31.tar.gz.
File metadata
- Download URL: prodigy_plus_schedule_free-1.8.31.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7eb21a9382a8f1c40d97cfb980761716e97e30a7a4bbdf21f6249d209d062568
|
|
| MD5 |
6d60677109312ce9867cde32bba72723
|
|
| BLAKE2b-256 |
f8eb6202f4ad097e1d3a443b7ee059d2b9e48e17fd797a84fce8d16e0f92162e
|
File details
Details for the file prodigy_plus_schedule_free-1.8.31-py3-none-any.whl.
File metadata
- Download URL: prodigy_plus_schedule_free-1.8.31-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20db07b4078a921366c9f1a2ab56236ffff17a0aa928a647ff4968a59f29d021
|
|
| MD5 |
dafd60ef2a76511faac669c1c6766a4e
|
|
| BLAKE2b-256 |
774540aab2f272ee417946ce32aad1ee59506c73da181d021fe188eb0954038c
|