nn_softshrink | R Documentation |
Applies the soft shrinkage function elementwise:
nn_softshrink(lambd = 0.5)
lambd |
the |
\mbox{SoftShrinkage}(x) =
\left\{ \begin{array}{ll}
x - \lambda, & \mbox{ if } x > \lambda \\
x + \lambda, & \mbox{ if } x < -\lambda \\
0, & \mbox{ otherwise }
\end{array}
\right.
Input: (N, *)
where *
means, any number of additional
dimensions
Output: (N, *)
, same shape as the input
if (torch_is_installed()) {
m <- nn_softshrink()
input <- torch_randn(2)
output <- m(input)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.