Rate this Page

Hardsigmoid#

class torch.nn.modules.activation.Hardsigmoid(inplace=False)[source]#

Applies the Hardsigmoid function element-wise.

Hardsigmoid is defined as:

Hardsigmoid(x)=01x/6+1/2if x3,if x+3,otherwise
Parameters

inplace (bool) – can optionally do the operation in-place. Default: False

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

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

../_images/Hardsigmoid.png

Examples:

>>> m = nn.Hardsigmoid()
>>> input = torch.randn(2)
>>> output = m(input)
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.