Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


torch (version 0.8.1)

nn_celu: CELU module

Description

Applies the element-wise function:

Usage

nn_celu(alpha = 1, inplace = FALSE)

Arguments

alpha

the α value for the CELU 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

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

More details can be found in the paper Continuously Differentiable Exponential Linear Units.

Examples

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

Run the code above in your browser using DataLab