tf.math.less_equal

Returns the truth value of (x <= y) element-wise.

tf.math.less_equal(
    x, y, name=None
)

NOTE: math.less_equal supports broadcasting. More about broadcasting here

Example:

x = tf.constant([5, 4, 6])
y = tf.constant([5])
tf.math.less_equal(x, y) ==> [True, True, False]

x = tf.constant([5, 4, 6])
y = tf.constant([5, 6, 6])
tf.math.less_equal(x, y) ==> [True, True, True]

Args:

Returns:

A Tensor of type bool.