If we include a callback to early stop our training process…

If we include a callback to early stop our training process and prevent overfitting if we do not observe progress in 10 epochs like the one below callback_list = [tf.keras.callbacks.EarlyStopping(monitor=’mae’, patience=10)] where should we include it in our ML architeture?