pub fn relu(x: impl AsRef<Array>) -> Result<Array>
Applies the Rectified Linear Unit.
This is:
maximum(x, 0)