快捷方式

Hardswish

class torch.nn.Hardswish(inplace=False)[source][source]

應用 Hardswish 函式,逐元素進行。

該方法在論文:Searching for MobileNetV3 中有描述。

Hardswish 的定義如下:

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}
引數

inplace (bool) – 可選地進行就地操作。預設值:False

形狀
  • 輸入: ()(*),其中 * 表示任意維數。

  • 輸出: ()(*),與輸入形狀相同。

../_images/Hardswish.png

示例

>>> m = nn.Hardswish()
>>> input = torch.randn(2)
>>> output = m(input)

文件

訪問 PyTorch 全面開發者文件

檢視文件

教程

獲取面向初學者和高階開發者的深度教程

檢視教程

資源

查詢開發資源並解答疑問

檢視資源