Keras CNN, verbose training progress bar display

2019-06-25 23:25发布

Running CNN in Keras. When it starts to run model.fit, it prints progress bar for each batch, like this

progress bar for each batch

Is it possible to display the progress bar for each epoch? Like this

enter image description here

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

1条回答
beautiful°
2楼-- · 2019-06-26 00:17

As a quick fix for this on windows operating system, you can just maximize the command prompt window. this will exactly display the progress bar for each epoch as you want.

查看更多
登录 后发表回答