Shortcuts

ELU

class torch.nn.ELU(alpha: float = 1.0, inplace: bool = False)[source]

Applies the element-wise function:

ELU(x)=max(0,x)+min(0,α(exp(x)1))\text{ELU}(x) = \max(0,x) + \min(0, \alpha * (\exp(x) - 1))
Parameters
  • alpha – the α\alpha value for the ELU formulation. Default: 1.0

  • inplace – can optionally do the operation in-place. Default: False

Shape:
  • Input: (N,)(N, *) where * means, any number of additional dimensions

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

../_images/ELU.png

Examples:

>>> m = nn.ELU()
>>> input = torch.randn(2)
>>> output = m(input)

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