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