pub fn softsign<const D: usize, B>(tensor: Tensor<B, D>) -> Tensor<B, D>where B: Backend,
Applies the Softsign function element-wise.
softsign(x_i) = x_i / (1 + |x_i|)