pub fn silu(x: impl AsRef<Array>) -> Result<Array>
Applies the Sigmoid Linear Unit. Also known as Swish.
This is:
x * sigmoid(x)