Exponential linear unit activation function.
Computes the element-wise function: elu(x) = x > 0 ? x : alpha * (exp(x) - 1)
elu(x) = x > 0 ? x : alpha * (exp(x) - 1)
Exponential linear unit activation function.
Computes the element-wise function:
elu(x) = x > 0 ? x : alpha * (exp(x) - 1)