This repository was archived by the owner on Mar 30, 2022. It is now read-only.

Description
In Tuotrial https://www.tensorflow.org/swift/tutorials/model_training_walkthrough
- You can read statement like "Import data with the Epochs API". Nomenclature issue. Data should be imported by Data API, right? How come "Epochs". At training loop, data can be batched, but that's later.
- Instead of loading txt using Numpy, can pandas be used, as done popularly in python-ML ecosystem. Two calls of loadtxt (one for features, and one again for labels), does not make sense, either.
- Mention of batching should not be mentioned for such beginners level tutorial, IMO, and especially when dataset is small. The section titled "Create a dataset using the Epochs API" looks unnecessarily complicated and irrelevant.
- In summary, this tutorial should be as simplistic as corresponding keras tutorial https://machinelearningmastery.com/multi-class-classification-tutorial-keras-deep-learning-library/