Reputation: 2147
when using the keras.ImageDataGenerator, and choosing some augmentations (flip, zoom, etc.) does that just change my datastream or does it add augmented data to the data stream in addition, increasing my data size?
Thanks for your help
Upvotes: 0
Views: 36
Reputation: 2010
It does not increase your dataset as far as I know. It just adds random transforms or perturbations in your training data. So, yes, it just changes your data. Having said that, if you need more data
save_to_dir
parametersteps_per_epoch = N*(n_samples / batch_size)
and train on N
times the amount of data per epochUpvotes: 1