tf.keras.activations.elu

TensorFlow 1 version View source on GitHub

Exponential linear unit.

x Input tensor.
alpha A scalar, slope of negative section.

The exponential linear activation: x if x > 0 and alpha * (exp(x)-1) if x < 0.

Reference: