Doc(Language.ANY, DocScope.ALL){
            """
                Sigmoid cross entropy: applies the sigmoid activation function on the input logits (input "pre-sigmoid preductions")
                and implements the binary cross entropy loss function. This implementation is numerically more stable than using
                standard (but separate) sigmoid activation function and log loss (binary cross entropy) loss function.<br>