I want to modify the display information of verbose in Keras. This is the original version:
model.fit(train, train_label,
          batch_size=32,
          epochs=100,
          verbose=1,
          validation_data=(test, test_label))
Epoch 1/2
104/104 [==============================] - 72s 456us/step - loss: 0.2823 - acc: 
0.8511 - val_loss: 0.2933 - val_acc: 0.8629
But others look like this:
234/10000 [====>.........................] - ETA: 81s - loss: 20.7154 - x1_loss: 9.5913 - x2_loss: 10.0536 - x3_loss: 1.0705
How can I show my loss value like him? (i.e. show x1_loss, x2_loss, x3_loss)
 
    