tf.keras.activations.serialize

View source on GitHub

Returns name attribute (__name__) of function.

tf.keras.activations.serialize(
    activation
)

Arguments:

Returns:

String denoting the name attribute of the input function

For example:

>>> tf.keras.activations.serialize(tf.keras.activations.tanh)
'tanh'
>>> tf.keras.activations.serialize(tf.keras.activations.sigmoid)
'sigmoid'
>>> tf.keras.activations.serialize('abcd')
Traceback (most recent call last):
...
ValueError: ('Cannot serialize', 'abcd')

Raises: