• Computes reciprocal of square root of the input tf.Tensor element-wise: y = 1 / sqrt(x)

    const x = tf.tensor1d([1, 2, 4, -1]);

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

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc