When creating a tf.data.Dataset, the main goal is to efficiently feed data to your model. The key metric to consider is throughput, which means how many data samples per second the pipeline can provide. This matters because a slow data pipeline can make your model wait, slowing down training.
Another important metric is latency, the delay before the first data sample is ready. Low latency helps start training quickly.
While these are not traditional accuracy metrics, they are critical to ensure your model trains well and fast.