Closed
Description
In addition to this example:
callback = keras.callbacks.EarlyStopping(monitor='val_loss')
Allow monitoring of multiple metrics, as in this example:
callback = keras.callbacks.EarlyStopping(monitor=['val_loss', 'val_accuracy', 'val_f1measure'])
This way, training should not stop while any of these metrics get better values, not just one of them.