relu6¶
- paddle.fluid.layers.nn. relu6 ( x, threshold=6.0, name=None ) [source]
-
${comment}
- Parameters
-
x (${x_type}) – ${x_comment}
threshold (float, optional) – ${threshold_comment}
name (str, optional) – The default value is None. Normally there is no need for user to set this property. For more information, please refer to Name.
- Returns
-
${out_comment}
- Return type
-
output(${out_type})
Examples
import paddle.fluid as fluid import numpy as np in1 = np.array([[-1,0],[2.5,7.8]]) with fluid.dygraph.guard(): x1 = fluid.dygraph.to_variable(in1) out1 = fluid.layers.relu6(x=x1, threshold=6.0) print(out1.numpy()) # [[0. 0. ] # [2.5 6. ]]