tf.data.experimental.get_next_as_optional

TensorFlow 1 version View source on GitHub

Returns a tf.experimental.Optional with the next element of the iterator. (deprecated)

If the iterator has reached the end of the sequence, the returned tf.experimental.Optional will have no value.

iterator A tf.data.Iterator.

A tf.experimental.Optional object which either contains the next element of the iterator (if it exists) or no value.