nn_threshold {torch} | R Documentation |
Threshold module
Description
Thresholds each element of the input Tensor.
Usage
nn_threshold(threshold, value, inplace = FALSE)
Arguments
threshold |
The value to threshold at |
value |
The value to replace with |
inplace |
can optionally do the operation in-place. Default: |
Details
Threshold is defined as:
Shape
Input:
where
*
means, any number of additional dimensionsOutput:
, same shape as the input
Examples
if (torch_is_installed()) {
m <- nn_threshold(0.1, 20)
input <- torch_randn(2)
output <- m(input)
}
[Package torch version 0.13.0 Index]