Skip to content

Instantly share code, notes, and snippets.

@um4ng-tiw
Created July 8, 2021 13:39
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 um4ng-tiw/c0dbb04d68a741eb2914c20ed9acd792 to your computer and use it in GitHub Desktop.
Save um4ng-tiw/c0dbb04d68a741eb2914c20ed9acd792 to your computer and use it in GitHub Desktop.
datagen = ImageDataGenerator(rescale = 1/255.0, validation_split = 0.2)
train_data_generator = datagen.flow_from_directory(directory="Blood_cell_image_dataset/images/TRAIN/",
target_size = (img_width, img_height), color_mode="rgb",
class_mode="categorical", batch_size = 16, shuffle=True ,subset = "training")
validation_data_generator = datagen.flow_from_directory(directory="Blood_cell_image_dataset/images/TRAIN/",
target_size = (img_width, img_height), color_mode="rgb",
class_mode="categorical", batch_size = 16, shuffle=True, subset = "validation")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment