torch:hardsigmoid
作者:互联网
hardsigmoid
torch.nn.functional.
hardsigmoid
(input) → Tensor[SOURCE]-
Applies the element-wise function
\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}Hardsigmoid(x)=⎩⎪⎪⎨⎪⎪⎧01x/6+1/2if x≤−3,if x≥+3,otherwise- Parameters
-
inplace – If set to
True
, will do this operation in-place. Default:False
See
Hardsigmoid
for more details.
标签:text,hardsigmoid,torch,cases,Hardsigmoid,otherwise 来源: https://www.cnblogs.com/DDBD/p/14066464.html