快捷方式

torch.nn.functional.hardswish

torch.nn.functional.hardswish(input, inplace=False)[源代码]

应用 hardswish 函数,逐元素。

遵循论文中描述的实现: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

返回类型

张量

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源