I have a question regarding the different image variations ImageDataGenerator generates when applying parameters for data augmentation.
If I have a 200 images dataset, and I use ImageDataGenerator to use data augmentation, will my augmentation parameters be applied at random on my dataset resulting in the same amount of images (200) but modified according to the specified parameters, or does it will generate additional variations of my 200 images and add those to the original dataset, probably increasing the size of my training set?
Or probably it applies at random the parameters specified during training, resulting on a different variaton of the same image on each epoch, without the need of increasing the training size?
In the output display of model_for_aug.fit() it shows 100/100 when each epoch ends. So it appears that the number of batches is still 100, the same as when augmentation is not used, unless TensorFlow added batches behind the scene and does not display them.