nnf_selu function

Selu

Selu

Applies element-wise, [REMOVE_ME]SELU(x)=scale(max(0,x)+min(0,α(exp(x)1)))[REMOVEME2] SELU(x) = scale * (max(0,x) + min(0, \alpha * (exp(x) - 1))) [REMOVE_ME_2], with α=1.6732632423543772848170429916717\alpha=1.6732632423543772848170429916717 and scale=1.0507009873554804934193349852946scale=1.0507009873554804934193349852946.

nnf_selu(input, inplace = FALSE) nnf_selu_(input)

Arguments

  • input: (N,*) tensor, where * means, any number of additional dimensions
  • inplace: can optionally do the operation in-place. Default: FALSE

Description

Applies element-wise,

SELU(x)=scale(max(0,x)+min(0,α(exp(x)1))) SELU(x) = scale * (max(0,x) + min(0, \alpha * (exp(x) - 1)))

, with α=1.6732632423543772848170429916717\alpha=1.6732632423543772848170429916717 and scale=1.0507009873554804934193349852946scale=1.0507009873554804934193349852946.

Examples

if (torch_is_installed()) { x <- torch_randn(2, 2) y <- nnf_selu(x) nnf_selu_(x) torch_equal(x, y) }
  • Maintainer: Daniel Falbel
  • License: MIT + file LICENSE
  • Last published: 2025-02-14