tf.assert_greater(x, y, data=None, summarize=None, message=None, name=None) Assert the condition x > y holds element-wise
tf.assert_type(tensor, tf_type, message=None, name=None) Statically asserts that the given Tensor is of the specified
tf.assert_negative(x, data=None, summarize=None, message=None, name=None) Assert the condition x < 0 holds element-wise
tf.assert_integer(x, message=None, name=None) Assert that x is of integer dtype. Example
tf.assert_equal(x, y, data=None, summarize=None, message=None, name=None) Assert the condition x == y holds element-wise
tf.assert_rank_at_least(x, rank, data=None, summarize=None, message=None, name=None) Assert x has rank equal to rank
tf.assert_less(x, y, data=None, summarize=None, message=None, name=None) Assert the condition x < y holds element-wise
Page 2 of 2