I am new to Deep learning and would like to understand on the below points. Can you please help.
If I give number of epochs as 100 to train and try to evaluate the model, does it take the best epoch model or the final model after 100 epochs.
In history, I am seeing loss and val loss. Do the model try to minimize only the training loss and just show the val_loss for our reference, similar to the metrics it shows.
If I use Keras Tuner (RandomSearch), there is an objective function. I am confused whether the model try to reduce the loss provided during compile or the loss provided in the tuner objective.
Can you please clarify on the above points.