評價此頁

torch.nn.functional.hardswish#

torch.nn.functional.hardswish(input, inplace=False)[原始碼]#

逐元素應用 hardswish 函式。

遵循論文中描述的實現:Searching for MobileNetV3

Hardswish(x)={0if x3,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

返回型別

張量