Skip to content

Instantly share code, notes, and snippets.

@PallawiSinghal
Last active March 7, 2019 12:09
Show Gist options
  • Save PallawiSinghal/e674ac2bee755c5b1f2ed2a5dd3f65c9 to your computer and use it in GitHub Desktop.
Save PallawiSinghal/e674ac2bee755c5b1f2ed2a5dd3f65c9 to your computer and use it in GitHub Desktop.
This code helps to understand how data augmentation works in Keras.
from keras.preprocessing.image import ImageDataGenerator, array_to_img, img_to_array, load_img
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')
img = load_img('DATA/TRAIN/CAT/cat.0.jpg') # this is a PIL image
x = img_to_array(img) # this is a Numpy array with shape (3, 150, 150)
x = x.reshape((1,) + x.shape) # this is a Numpy array with shape (1, 3, 150, 150)
# the .flow() command below generates batches of randomly transformed images
# and saves the results to the `preview/` directory
i = 0
for batch in datagen.flow(x, batch_size=1,
save_to_dir='preview', save_prefix='cat', save_format='jpeg'):
i += 1
if i > 20:
break # otherwise the generator would loop indefinitely
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment