Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


torch (version 0.14.2)

nn_elu: ELU module

Description

Applies the element-wise function:

Usage

nn_elu(alpha = 1, inplace = FALSE)

Arguments

alpha

the α 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 dimensions

  • Output: (N,), same shape as the input

Details

ELU(x)=max(0,x)+min(0,α(exp(x)1))

Examples

Run this code
if (torch_is_installed()) {
m <- nn_elu()
input <- torch_randn(2)
output <- m(input)
}

Run the code above in your browser using DataLab