tf.nn.elu

Computes exponential linear: exp(features) - 1 if < 0, features otherwise.

tf.nn.elu(
    features, name=None
)

See Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs)

Args:

Returns:

A Tensor. Has the same type as features.