Parsing Examples
Set up a function for parsing Example objects with and without labels.
We'll cover the following...
We'll cover the following...
Chapter Goals:
- Create a function to parse feature data from serialized Example objects
A. Extracting feature data
The input pipeline consists of reading serialized Example objects from the TFRecords file and parsing feature data from the serialized Examples. We parse feature data for a single Example (which represents data for one DataFrame row) using the tf.io.parse_single_example function.
B. Labeled data
For both training and evaluation, we require the data to be labeled in order to ...