CELU module
Applies the element-wise function:
nn_celu(alpha = 1, inplace = FALSE)
alpha
: the value for the CELU formulation. Default: 1.0inplace
: can optionally do the operation in-place. Default: FALSE
More details can be found in the paper Continuously Differentiable Exponential Linear Units.
*
means, any number of additional dimensionsif (torch_is_installed()) { m <- nn_celu() input <- torch_randn(2) output <- m(input) }
Useful links