r"""Applies the rectified linear unit function element-wise. See :class:`~.module.ReLU` for more details.
(x)
| 859 | |
| 860 | |
| 861 | def relu(x): |
| 862 | r"""Applies the rectified linear unit function element-wise. |
| 863 | |
| 864 | See :class:`~.module.ReLU` for more details. |
| 865 | """ |
| 866 | return _elwise(x, mode=Elemwise.Mode.RELU) |
| 867 | |
| 868 | |
| 869 | def relu6(x): |