Skip to content

Instantly share code, notes, and snippets.

@kamal2230

kamal2230/mc7.py Secret

Created October 11, 2020 07:05
Embed
What would you like to do?
history = model.fit_generator(
train_generator,
steps_per_epoch = np.ceil(2520/20), # 2520 images = batch_size * steps
epochs = 10,
validation_data=validation_generator,
validation_steps = np.ceil(372/20), # 372 images = batch_size * steps
callbacks=[callbacks],
verbose = 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment