relu6¶
- paddle.nn.functional. relu6 ( x, name=None ) [source]
-
relu6 activation
\[relu6(x) = min(max(0,x), 6)\]- Parameters
-
x (Tensor) – The input Tensor with data type float32, float64.
name (str, optional) – Name for the operation (optional, default is None). For more information, please refer to Name.
- Returns
-
A Tensor with the same data type and shape as
x
.
Examples
import paddle import paddle.nn.functional as F import numpy as np x = paddle.to_tensor(np.array([-1, 0.3, 6.5])) out = F.relu6(x) # [0, 0.3, 6]