nnf_glu: Glu

View source: R/nnf-activation.R

nnf_gluR Documentation

Glu

Description

The gated linear unit. Computes:

Usage

nnf_glu(input, dim = -1)

Arguments

input

(Tensor) input tensor

dim

(int) dimension on which to split the input. Default: -1

Details

GLU(a, b) = a \otimes \sigma(b)

where input is split in half along dim to form a and b, \sigma is the sigmoid function and \otimes is the element-wise product between matrices.

See Language Modeling with Gated Convolutional Networks.


torch documentation built on June 7, 2023, 6:19 p.m.