v0.4.0
What's Changed
- Added custom
AccumBatchNormalization
layer with gradient accumulation support. - Added more unit tests -> code coverage = 99%
- Made proper documentations which is hosted at gradientaccumulator.readthedocs.io/
- Reduced runtime on several unit tests to make CI jobs faster
- Added fix for
protobuf
fortfds
in CIs - Reworked README - moved most stuff to the Documentations + added CI section w/badges
- Header image by @jpdefrutos in #51
New Contributors
- @jpdefrutos made their first contribution in #51
New API feature
from gradient_accumulator import AccumBatchNormalization
layer = AccumBatchNormalization(accum_steps=4)
Can be used as a regular Keras BatchNormalization
layer, but with reduced functionality.
Full Changelog: v0.3.2...v0.4.0