Continuously-differentiable exponential linear unit activation function.
Computes the element-wise function: celu(x) = x > 0 ? x : alpha * (exp(x/alpha) - 1)
celu(x) = x > 0 ? x : alpha * (exp(x/alpha) - 1)
Continuously-differentiable exponential linear unit activation function.
Computes the element-wise function:
celu(x) = x > 0 ? x : alpha * (exp(x/alpha) - 1)