pub fn softsign(x: impl AsRef<Array>) -> Result<Array>
Applies the Softsign function.
This is:
x / (1 + abs(x))