Skip to content

Instantly share code, notes, and snippets.

@LayanCS
Created August 30, 2020 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LayanCS/6fe5bfbaf9705e24a025270db0483261 to your computer and use it in GitHub Desktop.
Save LayanCS/6fe5bfbaf9705e24a025270db0483261 to your computer and use it in GitHub Desktop.
Adam with TensorFlow
import tensorflow as tf
tf.keras.optimizers.Adam(
learning_rate=0.001, beta_1=0.9, beta_2=0.999, epsilon=1e-07, amsgrad=False,
name='Adam')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment