tf.keras.optimizers.get

TensorFlow 2 version View source on GitHub

Retrieves a Keras Optimizer instance.

identifier Optimizer identifier, one of

  • String: name of an optimizer
  • Dictionary: configuration dictionary. - Keras Optimizer instance (it will be returned unchanged). - TensorFlow Optimizer instance (it will be wrapped as a Keras Optimizer).

A Keras Optimizer instance.

ValueError If identifier cannot be interpreted.