pub fn log_sigmoid<const D: usize>(x: Tensor<D>) -> Tensor<D>
Applies the log-sigmoid function element-wise: log(1 / (1 + e^−x)).
log(1 / (1 + e^−x))
Panics on non-float element types.