Threshold#
- class brainstate.nn.Threshold(threshold, value)#
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 brainstate.nn as nn >>> import brainstate >>> m = nn.Threshold(0.1, 20) >>> x = brainstate.random.randn(2) >>> output = m(x)