Applies the element-wise function:
Arguments
- alpha
the \(\alpha\) value for the ELU formulation. Default: 1.0
- inplace
can optionally do the operation in-place. Default:
FALSE
Shape
Input: \((N, *)\) where
*
means, any number of additional dimensionsOutput: \((N, *)\), same shape as the input
Examples
if (torch_is_installed()) {
m <- nn_elu()
input <- torch_randn(2)
output <- m(input)
}