soft_relu¶
- paddle.fluid.layers. soft_relu ( x, threshold=40.0, name=None ) ¶
SoftReLU 激活函数。
\[out=ln(1+exp(max(min(x,threshold),-threshold)))\]
参数¶
x (Variable) - SoftReLU激活函数的输入,为数据类型为float32,float64的多维Tensor或者LoDTensor。
threshold (float) - SoftRelu的阈值,默认为40.0。
name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。
返回¶
一个Tensor,shape和输入Tensor相同。
返回类型¶
Variable(Tensor|LoDTensor),LoD信息与输入Tensor一致。
代码示例¶
COPY-FROM: paddle.fluid.layers.soft_relu