Hardtanh¶
Hardtanh 激活层(Hardtanh Activation Operator)。创建一个 Hardtanh 类的可调用对象。计算公式如下:
\[\begin{split}Hardtanh(x)= \left\{ \begin{aligned} &max, & & if \ x > max \\ &min, & & if \ x < min \\ &x, & & if \ others \end{aligned} \right.\end{split}\]
其中,\(x\) 为输入的 Tensor
参数¶
min (float,可选) - Hardtanh 激活计算公式中的 min 值。默认值为-1。
max (float,可选) - Hardtanh 激活计算公式中的 max 值。默认值为 1。
name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。
形状:¶
input:任意形状的 Tensor。
output:和 input 具有相同形状的 Tensor。
代码示例¶
import paddle
x = paddle.to_tensor([-1.5, 0.3, 2.5])
m = paddle.nn.Hardtanh()
out = m(x) # [-1., 0.3, 1.]