Makes a "one-shot" iterator that can be iterated only once.
tf.raw_ops.OneShotIterator( dataset_factory, output_types, output_shapes, container='', shared_name='', name=None )
A one-shot iterator bundles the logic for defining the dataset and the state of the iterator in a single op, which allows simple input pipelines to be defined without an additional initialization ("MakeIterator") step.
One-shot iterators have the following limitations:
dataset_factory
function.OutOfRange
error.For greater flexibility, use "Iterator" and "MakeIterator" to define an iterator using an arbitrary subgraph, which may capture tensors (including fed values) as parameters, and which may be reset multiple times by rerunning "MakeIterator".
Args | |
---|---|
dataset_factory | A function decorated with @Defun. A function of type () -> DT_VARIANT , where the returned DT_VARIANT is a dataset. |
output_types | A list of tf.DTypes that has length >= 1 . |
output_shapes | A list of shapes (each a tf.TensorShape or list of ints ) that has length >= 1 . |
container | An optional string . Defaults to "" . |
shared_name | An optional string . Defaults to "" . |
name | A name for the operation (optional). |
Returns | |
---|---|
A Tensor of type resource . |
© 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/raw_ops/OneShotIterator