Asserts that the given condition is true.
tf.raw_ops.Assert(
condition, data, summarize=3, name=None
)
If condition
evaluates to false, print the list of tensors in data
.
summarize
determines how many entries of the tensors to print.
Returns | |
---|---|
The created Operation. |