In the tf.data talk at the TensorFlow Dev Summit 2018, Derek Murray presented a way to combine the tf.data API with TensorFlow\'s eager execution mode (at 10:54). I tried ou
With TF 2.1,
You can create an iterator like so:
iterator = iter(dataset)
And get the next batch of values:
batch = iterator.get_next()