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.
Args | |
---|---|
condition
|
A Tensor of type bool . The condition to evaluate.
|
data
|
A list of Tensor objects.
The tensors to print out when condition is false.
|
summarize
|
An optional int . Defaults to 3 .
Print this many entries of each tensor.
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
The created Operation. |