Hardswish#
- class torch.nn.modules.activation.Hardswish(inplace=False)[source]#
Applies the Hardswish function, element-wise.
Method described in the paper: Searching for MobileNetV3.
Hardswish is defined as:
Hardswish(x)=⎩⎨⎧0xx⋅(x+3)/6if x≤−3,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.
Examples:
>>> m = nn.Hardswish() >>> input = torch.randn(2) >>> output = m(input)