tf.keras.activations.deserialize

TensorFlow 1 version View source on GitHub

Returns activation function denoted by input string.

x String

Tensorlow Activation function denoted by input string.

For example:

tf.keras.activations.deserialize('linear') tf.keras.activations.deserialize('sigmoid') tf.keras.activations.deserialize('abcd') Traceback (most recent call last): ... ValueError: Unknown activation function:abcd

name The name of the actiuvation function.
custom_objects A {name:value} dictionary for activations not build into keras.

ValueError Unknown activation function if the input string does not denote any defined Tensorflow activation function.