Skip to content
Advertisement

How to disable printing reports after each epoch in Keras?

After each epoch I have printout like below:

JavaScript

I am not using built-in epochs, so I would like to disable these printouts and print something myself.

How to do that?

I am using tensorflow backend if it matters.

Advertisement

Answer

Set verbose=0 to the fit method of your model.

Advertisement