datagen = ImageDataGenerator( rotation_range=40, width_shift_range=0.2, height_shift_range=0.2, shear_range=0.2, zoom_range=0.2, horizontal_flip=True, fill_mode='nearest') rotation_range 是角度值(在 0~180 范围内),表示图像随机旋转的角度范围. width_shift 和 height_shift…