Sigmoid
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_sigmoid.RdSigmoid
sigmoid(input, out=NULL) -> Tensor
Returns a new tensor with the sigmoid of the elements of input.
$$ \mbox{out}_{i} = \frac{1}{1 + e^{-\mbox{input}_{i}}} $$
Examples
if (torch_is_installed()) {
a = torch_randn(c(4))
a
torch_sigmoid(a)
}
#> torch_tensor
#> 0.4331
#> 0.1514
#> 0.3672
#> 0.7086
#> [ CPUFloatType{4} ]