捷徑

Hardswish

class torch.nn.Hardswish(inplace=False)[原始碼][原始碼]

逐元素地應用 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) – 是否選擇性地進行原地 (in-place) 運算。預設值:False

形狀
  • 輸入:()(*),其中 * 代表任意數量的維度。

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

../_images/Hardswish.png

範例

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

文件

存取 PyTorch 的完整開發人員文件

檢視文件

教學

取得適合初學者和進階開發人員的深入教學

檢視教學

資源

尋找開發資源並獲得問題解答

檢視資源