Does ImageDataGenerator add more images to my dataset?

后端 未结 6 1408
天命终不由人
天命终不由人 2020-12-08 07:49

I\'m trying to do image classification with the Inception V3 model. Does ImageDataGenerator from Keras create new images which are added onto my dataset? If I h

6条回答
  •  借酒劲吻你
    2020-12-08 08:44

    Also note that: These augmented images are not stored in the memory, they are generated on the fly while training and lost after training. You can't read again those augmented images.

    Not storing those images is a good idea because we'd run out of memory very soon storing huge no of images

提交回复
热议问题