Hardsigmoid module
Applies the element-wise function:
nn_hardsigmoid()
Details
\mboxHardsigmoid(x)=⎩⎨⎧01x/6+1/2\mboxif x≤−3,\mboxif x≥+3,\mboxotherwise
Shape
- Input: (N,∗) where
*
means, any number of additional dimensions
- Output: (N,∗), same shape as the input
Examples
if (torch_is_installed()) {
m <- nn_hardsigmoid()
input <- torch_randn(2)
output <- m(input)
}