relu¶
- paddle.nn.functional. relu ( x, name=None ) [source]
- 
         relu activation. \[out = max(x, 0)\]- Parameters
- 
           - x (Tensor) – The input Tensor with data type float32, float64. 
- name (str, optional) – For details, please refer to Name. Generally, no setting is required. Default: None. 
 
- Returns
- 
           A Tensor with the same data type and shape as x.
 Examples import paddle import paddle.nn.functional as F x = paddle.to_tensor([-2, 0, 1], dtype='float32') out = F.relu(x) print(out) # [0., 0., 1.] 
