Package for gradient accumulation in TensorFlow
Project description
GradientAccumulator
Seemless gradient accumulation for TensorFlow 2
GradientAccumulator was developed by SINTEF Health due to the lack of an easy-to-use method for gradient accumulation in TensorFlow 2.
The package is available on PyPI and is compatible with and have been tested against TF >= 2.3 and Python >= 3.6 (tested with 3.6-3.10), and works cross-platform (Ubuntu, Windows, macOS).
What?
Gradient accumulation (GA) enables reduced GPU memory consumption through dividing a batch into smaller reduced batches, and performing gradient computation either in a distributing setting across multiple GPUs or sequentially on the same GPU. When the full batch is processed, the gradients are the accumulated to produce the full batch gradient.
Why?
In TensorFlow 2, there did not exist a plug-and-play method to use gradient accumulation with any custom pipeline. Hence, we have implemented two generic TF2-compatible approaches:
Method | Usage |
---|---|
GradientAccumulateModel |
model = GradientAccumulateModel(accum_steps=4, inputs=model.input, outputs=model.output) |
GradientAccumulateOptimizer |
opt = GradientAccumulateOptimizer(accum_steps=4, optimizer=tf.keras.optimizers.SGD(1e-2)) |
Both approaches control how frequently the weigths are updated, but in their own way. Approach (1) is for single-GPU only, whereas (2) supports both single-GPU and distributed training (multi-GPU).
Our implementations enable theoretically infinitely large batch size, with identical memory consumption as for a regular mini batch. If a single GPU is used, this comes at the cost of increased training runtime. Multiple GPUs could be used to increase runtime performance.
As batch normalization is not natively compatible with GA, support for adaptive gradient clipping has been added as an alternative. We have also added support for mixed precision and both GPU and TPU support.
Install
Stable release from PyPI:
pip install gradient-accumulator
Or from source:
pip install git+https://github.com/andreped/GradientAccumulator
Usage
from gradient_accumulator import GradientAccumulateModel
from tensorflow.keras.models import Model
model = Model(...)
model = GradientAccumulateModel(accum_steps=4, inputs=model.input, outputs=model.output)
Then simply use the model
as you normally would!
Mixed precision
There has also been added experimental support for mixed precision:
from tensorflow.keras import mixed_precision
from tensorflow.keras.optimizers import Adam
mixed_precision.set_global_policy('mixed_float16')
model = GradientAccumulateModel(accum_steps=4, mixed_precision=True, inputs=model.input, outputs=model.output)
opt = Adam(1e-3, epsilon=1e-4)
opt = mixed_precision.LossScaleOptimizer(opt)
If using TPUs, use bfloat16
instead of float16
, like so:
mixed_precision.set_global_policy('mixed_bfloat16')
There is also an example of how to use gradient accumulation with mixed precision here.
Distributed training with multiple GPUs
In order to use multiple GPUs, you will have to use the Optimizer wrapper:
opt = GradientAccumulateOptimizer(accum_steps=4, optimizer=tf.keras.optimizers.SGD(1e-2))
Just remember to wrap the optimizer within the tf.distribute.MirroredStrategy
. For an example, see here.
Adaptive gradient clipping
There has also been added support for adaptive gradient clipping, based on this implementation:
model = GradientAccumulateModel(accum_steps=4, use_agc=True, clip_factor=0.01, eps=1e-3, inputs=model.input, outputs=model.output)
The hyperparameters values for clip_factor
and eps
presented here are the default values.
Model format
It is recommended to use the SavedModel format when using this implementation. That is because the HDF5 format is only compatible with TF <= 2.6
when using the model wrapper. However, if you are using older TF versions, both formats work out-of-the-box. The SavedModel format works fine for all versions of TF 2.x
macOS compatibility
Note that GradientAccumulator is perfectly compatible with macOS, both with and without GPUs. In order to have GPU support on macOS, you will need to install the tensorflow-compiled version that is compatible with metal:
pip install tensorflow-metal
GradientAccumulator can be used as usually. However, note that there only exists one tf-metal version, which should be equivalent to TF==2.5.
TF 1.x
For TF 1, I suggest using the AccumOptimizer implementation in the H2G-Net repository instead, which wraps the optimizer instead of overloading the train_step of the Model itself (new feature in TF2).
PyTorch
For PyTorch, I would recommend using accelerate. HuggingFace :hugs: has a great tutorial on how to use it here.
Troubleshooting
Overloading of train_step
method of tf.keras.Model was introduced in TF 2.2, hence, this code is compatible with TF >= 2.2.
Also, note that TF depends on different python versions. If you are having problems getting TF working, try a different TF version or python version.
Disclaimer
In theory, one should be able to get identical results for batch training and using gradient accumulation. However, in practice, one may observe a slight difference. One of the cause may be when operations are used (or layers/optimizer/etc) that update for each step, such as Batch Normalization. It is not recommended to use BN with GA, as BN would update too frequently. However, you could try to adjust the momentum
of BN (see here).
It was also observed a small difference when using adaptive optimizers, which I believe might be due to how frequently they are updated. Nonetheless, for the optimizers, the difference was quite small, and one may approximate batch training quite well using our GA implementation, as rigorously tested here).
Acknowledgements
The gradient accumulator model wrapper is based on the implementation presented in this thread on stack overflow. The adaptive gradient clipping method is based on the implementation by @sayakpaul. The optimizer wrapper is derived from the implementation by @fsx950223 and @stefan-falk.
How to cite?
If you used this package or found the project relevant in your research, please, considering including the following citation:
@software{andre_pedersen_2023_7581815,
author = {André Pedersen and David Bouget},
title = {andreped/GradientAccumulator: v0.3.0},
month = jan,
year = 2023,
publisher = {Zenodo},
version = {v0.3.0},
doi = {10.5281/zenodo.7581815},
url = {https://doi.org/10.5281/zenodo.7581815}
}
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
File details
Details for the file gradient-accumulator-0.3.1.tar.gz
.
File metadata
- Download URL: gradient-accumulator-0.3.1.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0cd92d0e95082dc36190bcfefad71a2890a16d33b1f74e6e787301898b6879c |
|
MD5 | 6161136518c01adbbbbf26aab837b005 |
|
BLAKE2b-256 | 00889676e08ace14396a7f060d1b66fad7b001c93c9324e3d719ec174c0842df |
File details
Details for the file gradient_accumulator-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: gradient_accumulator-0.3.1-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb6003a6a0bd12551fd36cc0f221634d17bba5b43827f97d1501afcff6331185 |
|
MD5 | 4e084b028f77e36efa6ad44d59d68fed |
|
BLAKE2b-256 | 7c9c2ae03611fd34ee4bb83c16bf7d1d6e8700c338ee3f338769c63f0c58f2a2 |