def greater_equal(x, y): """Element-wise truth value of (x >= y). # Returns A bool tensor. """ return tf.greater_equal(x, y)