Niel_Eenterm
Niel_Eenterm

Reputation: 128

keras ImageDataGenerator without data augmentation?

My question is how to make a image generator in keras without any augmentation. I would like to create training and validation generator, in order to pass this to model.fit_generator, because the size of dataset is larger than my RAM memory on my laptop.

Would it be possible if I don't pass any argument to tf.keras.preprocessing.image.ImageDataGenerator()?

Upvotes: 2

Views: 1542

Answers (1)

Mike
Mike

Reputation: 1539

The default ImageDataGenerator doesn't perform any augmentation unless you specify it within its arguments.

Upvotes: 4

Related Questions