• Computes log sigmoid of the input tf.Tensor element-wise: logSigmoid(x). For numerical stability, we use -tf.softplus(-x).

    const x = tf.tensor1d([0, 1, -1, .7]);

    x.logSigmoid().print(); // or tf.logSigmoid(x)

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc