Rate this Page

GELU#

class torch.nn.GELU(approximate='none')[source]#

Applies the Gaussian Error Linear Units function.

GELU(x)=xΦ(x)

where Φ(x) is the Cumulative Distribution Function for Gaussian Distribution.

When the approximate argument is ‘tanh’, Gelu is estimated with:

GELU(x)=0.5x(1+Tanh(2/π(x+0.044715x3)))
Parameters

approximate (str, optional) – the gelu approximation algorithm to use: 'none' | 'tanh'. Default: 'none'

Shape:
  • Input: (), where means any number of dimensions.

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

../_images/GELU.png

Examples:

>>> m = nn.GELU()
>>> input = torch.randn(2)
>>> output = m(input)
extra_repr()[source]#

Return the extra representation of the module.

Return type

str

forward(input)[source]#

Runs the forward pass.

Return type

Tensor

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources
Morty Proxy This is a proxified and sanitized view of the page, visit original site.