快捷方式

torch.nn.functional.hardsigmoid

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

按元素应用 Hardsigmoid 函数。

Hardsigmoid(x)={0if x3,1if x+3,x/6+1/2otherwise\text{Hardsigmoid}(x) = \begin{cases} 0 & \text{if~} x \le -3, \\ 1 & \text{if~} x \ge +3, \\ x / 6 + 1 / 2 & \text{otherwise} \end{cases}
参数

inplace (bool) – 如果设置为 True,将在原地执行此操作。默认值:False

返回类型

张量

有关更多详细信息,请参阅 Hardsigmoid

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源