Line 216 of tensorflow/python/keras/engine/training_generator.py calls model_iterator to do validation, but does not pass the verbose parameter, meaning that the default value of verbose=1 is used. Solution Add in the missing parameter, e.g. # Run the test loop every epoch during training....