Assert tensor shapes and dimension size relationships between tensors.
tf.compat.v1.debugging.assert_shapes( shapes, data=None, summarize=None, message=None, name=None )
This Op checks that a collection of tensors shape relationships satisfies given constraints.
n = 10 q = 3 d = 7 x = tf.zeros([n,q]) y = tf.ones([n,d]) param = tf.Variable([1.0, 2.0, 3.0]) scalar = 1.0 tf.debugging.assert_shapes([ (x, ('N', 'Q')), (y, ('N', 'D')), (param, ('Q',)), (scalar, ()), ])
tf.debugging.assert_shapes([ (x, ('N', 'D')), (y, ('N', 'D')) ]) Traceback (most recent call last): ValueError: ...
Example of adding a dependency to an operation:
with tf.control_dependencies([tf.assert_shapes(shapes)]): output = tf.matmul(x, y, transpose_a=True)
If x
, y
, param
or scalar
does not have a shape that satisfies all specified constraints, message
, as well as the first summarize
entries of the first encountered violating tensor are printed, and InvalidArgumentError
is raised.
Size entries in the specified shapes are checked against other entries by their hash, except:
If the first entry of a shape is ...
(type Ellipsis
) or '*' that indicates a variable number of outer dimensions of unspecified size, i.e. the constraint applies to the inner-most dimensions only.
Scalar tensors and specified shapes of length zero (excluding the 'inner-most' prefix) are both treated as having a single dimension of size one.
Args | |
---|---|
shapes | A list of (Tensor , shape ) tuples, wherein shape is the expected shape of Tensor . See the example code above. The shape must be an iterable. Each element of the iterable can be either a concrete integer value or a string that abstractly represents the dimension. For example,
|
data | The tensors to print out if the condition is False. Defaults to error message and first few entries of the violating tensor. |
summarize | Print this many entries of the tensor. |
message | A string to prefix to the default message. |
name | A name for this operation (optional). Defaults to "assert_shapes". |
Returns | |
---|---|
Op raising InvalidArgumentError unless all shape constraints are satisfied. If static checks determine all constraints are satisfied, a no_op is returned. |
Raises | |
---|---|
ValueError | If static checks determine any shape constraint is violated. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/compat/v1/debugging/assert_shapes