class torch.nn.Threshold(threshold: float, value: float, inplace: bool = False)
[source]
Thresholds each element of the input Tensor.
Threshold is defined as:
False
*
means, any number of additional dimensionsExamples:
>>> m = nn.Threshold(0.1, 20) >>> input = torch.randn(2) >>> output = m(input)
© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.7.0/generated/torch.nn.Threshold.html