How can I determine how many images will be created after image augmentation via tensorflow ImageDataGenerator. What will be that number for an individual image and likewise all images.

I have total 17 image (16 image for train and 1 image for test)

    import tensorflow as tf 
    from tensorflow.keras.preprocessing.image import ImageDataGenerator

    aug = ImageDataGenerator(rotation_range=25, width_shift_range=0.1,
                         height_shift_range=0.1, shear_range=0.2, zoom_range=0.2,
                         horizontal_flip=True, fill_mode="nearest")

    history_model = model.fit_generator(
    aug.flow(X_train , y_train, batch_size = 32),  epochs=10, verbose=0)
0

There are 0 best solutions below