Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created April 5, 2020 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/176f1cad77809774ef8981938e6edb4f to your computer and use it in GitHub Desktop.
Save aniruddha27/176f1cad77809774ef8981938e6edb4f to your computer and use it in GitHub Desktop.
# ImageDataGenerator
datagen = ImageDataGenerator(
rotation_range=10, # rotation
width_shift_range=0.2, # horizontal shift
height_shift_range=0.2, # vertical shift
zoom_range=0.2, # zoom
horizontal_flip=True, # horizontal flip
brightness_range=[0.2,1.2]) # brightness
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment