Skip to main content

Easy to use optimizers with adaptive gradient clipping. Written in PyTorch.

Project description

AGC Optimizers

A small lib for using adaptive gradient clipping in your optimizer. Currently PyTorch only.

News

Sep 15, 2021

  • Add AGC use independent from optimizer choice in PyTorch

Sep 14, 2021

  • Add AdamW, Adam, SGD and RMSprop with AGC
  • Add first comparsion between optimizers with and without AGC based on CIFAR10

Introduction

Brock et al. introduced 2021 a new clipping technique in order to increase stability of large batch training and high learning rates in their Normalizer-Free Networks (NFNet), the adaptive gradient clipping. This clipping method is not implemented in leading frameworks, thus I provide optimizers which are capable of AGC.

Installation

pip install agc_optims

Usage

To be consistent with PyTorch all arguments of the optimizer remain the same as in the standard. Only two parameters are added for the AGC:

  • clipping : Hyperparameter for the clipping of the parameter. Default value 1e-2, smaller batch sizes demand a higher clipping parameter
  • agc_eps : Term used in AGC to prevent grads clipped to zero, default value 1e-3

Optimizer independent

from torch.optim import Adam
from agc_optims.clipper import AGC

net = Net() # your model

optimizer = Adam(net.parameters(), lr=0.001)
optimizer = AGC(optimizer=optimizer, clipping=0.16)

SGD

from agc_optims.optim import SGD_AGC

net = Net() # your model

optimizer = SGD_AGC(net.parameters(), lr=0.01, momentum=0.9, clipping=0.16)

Adam

from agc_optims.optim import Adam_AGC

net = Net() # your model

optimizer = Adam_AGC(net.parameters(), lr=0.001, weight_decay=1e-4, clipping=0.16)

AdamW

from agc_optims.optim import AdamW_AGC

net = Net() # your model

optimizer = AdamW_AGC(net.parameters(), lr=0.001, weight_decay=1e-4, clipping=0.16)

RMSprop

from agc_optims.optim import RMSprop_AGC

net = Net() # your model

optimizer = RMSprop_AGC(net.parameters(), lr=0.001, clipping=0.16)

Now you can use the optimizer just like their non-AGC counterparts.

Comparison

The following comparison shows that for batch sizes 64 and 128 Adam with AGC performs better than the normal Adam. SGD is unfortunately worse with AGC, but the batch size is also very small compared to the NFNet paper. This requires more comparisons with higher batch sizes and also on other data sets. RMSprop is also better at both batch sizes with AGC than without. The learning rate was left at the default value for all optimizers and the scripts in the performance_tests folder were used as the test environment.

Batch Size 64 - SGD Accuracy on Cifar10 Batch Size 64 - SGD Loss on Cifar10
Batch Size 128 - SGD Accuracy on Cifar10 Batch Size 128 - SGD Loss on Cifar10
Batch Size 64 - Adam Accuracy on Cifar10 Batch Size 64 - Adam Loss on Cifar10
Batch Size 128 - Adam Accuracy on Cifar10 Batch Size 128 - Adam Loss on Cifar10
Batch Size 64 - RMSProp Accuracy on Cifar10 Batch Size 64 - RMSProp Loss on Cifar10
Batch Size 128 - RMSProp Accuracy on Cifar10 Batch Size 128 - RMSProp Loss on Cifar10

As a little treat, I have also compared the speed of the optimizer with and without AGC to see whether this greatly increases training times.

Batch Size 128 - RMSProp Accuracy on Cifar10 Batch Size 128 - RMSProp Loss on Cifar10

To Do

  • Add first comparsion based on CIFAR10 with a small CNN
  • Add AGC independent from optimizer
  • Add comparsion with higher batch sizes (256,512,1024)
  • Add tests for each optimizer
  • Clipping == 0 no AGC
  • Add comparsion based on CIFAR100 with a small CNN
  • Add comparsion based on CIFAR10/100 with ResNet
  • Add comparsion with ImageNet (I do not have enough GPU-Power currently if someone provides some tests I would be grateful)
  • Add all optimizer included in PyTorch
  • Support of other frameworks than PyTorch
  • Add first comparsion based on CIFAR with a small CNN

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agc_optims-0.0.2.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

agc_optims-0.0.2-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

Details for the file agc_optims-0.0.2.tar.gz.

File metadata

  • Download URL: agc_optims-0.0.2.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for agc_optims-0.0.2.tar.gz
Algorithm Hash digest
SHA256 d7ce307ecb8440c44c67e2476bb58648c75f66dc62e009ec6da389f89659665f
MD5 b943ffaf6502e0e9ee8e50bce5c98a0d
BLAKE2b-256 8edded06fe52097a1715291fe85d4ae72bd24d85d716c3ed9a497a5d22923d52

See more details on using hashes here.

File details

Details for the file agc_optims-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: agc_optims-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for agc_optims-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 67a625704f56979746b04ecc811d6cf0eabf487f6a740c17458600cc45bb20ba
MD5 45c11f18649b1c07c05cd1540a3b3148
BLAKE2b-256 767f2667051f696d640ec96cfbce05d4d6f7342b932944bc0da841fb18e6d987

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page