nn_threshold | R Documentation |
Thresholds each element of the input Tensor.
nn_threshold(threshold, value, inplace = FALSE)
threshold |
The value to threshold at |
value |
The value to replace with |
inplace |
can optionally do the operation in-place. Default: |
Threshold is defined as:
y =
\left\{ \begin{array}{ll}
x, &\mbox{ if } x > \mbox{threshold} \\
\mbox{value}, &\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_threshold(0.1, 20)
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.