relu6

paddle.fluid.layers. relu6 ( x, threshold=6.0, name=None )

relu6激活函数

\[out=min(max(0, x), threshold)\]

参数

  • x (Variable) - 输入的多维 Tensor,数据类型为:float32、float64。

  • threshold (float) - relu6的阈值。默认值为6.0

  • name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。

返回

x 维度相同、数据类型相同的 Tensor

返回类型

Variable

代码示例

COPY-FROM: paddle.fluid.layers.relu6