Threshold#
- class brainpy.dnn.Threshold(threshold, value, inplace=False)[source]#
Thresholds each element of the input Tensor.
Threshold is defined as:
\[\begin{split}y = \begin{cases} x, &\text{ if } x > \text{threshold} \\ \text{value}, &\text{ otherwise } \end{cases}\end{split}\]- Parameters:
Examples
>>> import brainpy as bp >>> import brainpy.math as bm >>> m = bp.dnn.Threshold(0.1, 20) >>> input = bm.random.randn(2) >>> output = m(input)