Skip to content

Notes from Week 4 of auditing the course

Overfitting - model is very good at spotting features from a limited training datatset, but not so good at spotting features on data the model has not seen before.

This can be observed by graphing the plot of training accuracy (and validation accuracy) against the epochs. If the training accuracy is high but the validation accurcay is lower and plateaues, this is a good indication of overfitting.

Data augmentation via image transformations - mirroing/flipping, zooming, rotation, shearing, skewing, flipping increases the available training data.

Image augmentation introduces an element of randomness in the training. If the validation set is small and does not demosntrate similar variety nd randomness, then image augmentation may not solve the overfitting issue.

TF allows data augmentation to be done on the fly.

Image Generation


Jupyter Notebooks

Week 2- Lab 1 Week 2 - Lab 2

Preporcessing/augmentation in Keras Image data preprocessing

To Do