Running CNN in Keras. When it starts to run model.fit
, it prints progress bar for each batch, like this
Is it possible to display the progress bar for each epoch? Like this
Here is how I am using model.fit(x_train, y_train, nb_epoch = 1, batch_size = 32, verbose=1)
I have tried to set verbose
to 0 and 2, but there is no progress bar.
Please let me know if you have any thoughts. Many thanks