Hardswish¶ class torch.nn.Hardswish(inplace=False)[source][source]¶ 应用 Hardswish 函数,逐元素进行。 该方法在论文:Searching for MobileNetV3 中有描述。 Hardswish 的定义如下: Hardswish(x)={0if x≤−3,xif x≥+3,x⋅(x+3)/6otherwise\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} Hardswish(x)=⎩⎨⎧0xx⋅(x+3)/6if x≤−3,if x≥+3,otherwise 参数 inplace (bool) – 可选地进行就地操作。默认值:False 形状 输入: (∗)(*)(∗),其中 ∗*∗ 表示任意维数。 输出: (∗)(*)(∗),与输入形状相同。 示例 >>> m = nn.Hardswish() >>> input = torch.randn(2) >>> output = m(input)