# tensorflow-LAMB **Repository Path**: coracoding/tensorflow-LAMB ## Basic Information - **Project Name**: tensorflow-LAMB - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Implementation of LAMB in Tensorflow: https://arxiv.org/pdf/1904.00962.pdf I am starting with the Tensorflow code for Adam: https://github.com/tensorflow/tensorflow/blob/r1.13/tensorflow/python/training/adam.py The only function to change is the _apply_dense function. Since TF code does the actual math in C++ (hence the mysterious training_ops.apply_adam function returned), I started with the Adam implementation here for __apply_dense: https://github.com/angetato/Optimizers-for-Tensorflow/blob/master/tf_utils/Adam.py Still working on some issues with this implementation...use with caution.