• Computes softplus of the input tf.Tensor element-wise: log(exp(x) + 1)

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

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

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc