A Gentle Introduction to the tensorflow.data API
When you build and train a Keras deep learning model, you can provide the training data in several different ways. Presenting the data as a NumPy array or a TensorFlow tensor is common. Another way is to make a Python generator function and let the training loop read data from it. Yet another way of providing data is to use tf.data
dataset.
In this tutorial, you will see how you can use the tf.data
dataset for a Keras model. After finishing this tutorial, you will learn:
- How to create and use the
tf.data
dataset - The benefit of doing so compared to a generator function
Let’s get started.