• Returns the truth value of (a >= b) element-wise. Supports broadcasting.

    const a = tf.tensor1d([1, 2, 3]);
    const b = tf.tensor1d([2, 2, 2]);

    a.greaterEqual(b).print();

    Type Parameters

    Parameters

    Returns T

    Doc

Generated using TypeDoc