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