After each epoch I have printout like below:
JavaScript
x
5
1
Train on 102 samples, validate on 26 samples
2
Epoch 1/1
3
Epoch 00000: val_acc did not improve
4
102/102 [==============================] - 3s - loss: 0.4934 - acc: 0.8997 - val_loss: 0.4984 - val_acc: 0.9231
5
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.