pytorch / 2 / generated / torch.nn.functional.hardswish.html

torch.nn.functional.hardswish

torch.nn.functional.hardswish(input, inplace=False) [source]

Applies the hardswish function, element-wise, as described in the paper:

Searching for MobileNetV3.

Hardswish ( x ) = { 0 if x 3 , x if x + 3 , x ( x + 3 ) / 6 otherwise \text{Hardswish}(x) = \begin{cases} 0 & \text{if~} x \le -3, \\ x & \text{if~} x \ge +3, \\ x \cdot (x + 3) /6 & \text{otherwise} \end{cases}

See Hardswish for more details.

Return type

Tensor

© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/2.1/generated/torch.nn.functional.hardswish.html