TensorFlow 1 version | View source on GitHub |
Returns the type signature for elements of the input dataset / iterator.
tf.data.experimental.get_structure(
dataset_or_iterator
)
Args | |
---|---|
dataset_or_iterator
|
A tf.data.Dataset or an tf.data.Iterator .
|
Returns | |
---|---|
A nested structure of tf.TypeSpec objects matching the structure of an
element of dataset_or_iterator and specifying the type of individual
components.
|
Raises | |
---|---|
TypeError
|
If input is not a tf.data.Dataset or an tf.data.Iterator
object.
|