Skip to content

float256/rectified-adam-keras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rectified Adam Keras

RAdam implementation on Keras
Link to the oiginal paper: https://arxiv.org/pdf/1908.03265v1.pdf

Table of contents:

  1. Required Libraries
  2. Installation
  3. Using

Required Libraries

  • Keras
  • TensorFlow (another backend can be used)

Installation

git clone https://github.com/float256/rectified-adam-keras.git
cd rectified-adam-keras
pip3 install .

Using

from radam import RAdam
from keras.models import Sequential

model = Sequential()
...
model.compile(optimizer=RAdam(1e-4), ...)

Releases

No releases published

Packages

No packages published

Languages