validation_data
can be passed to model.fit
, but how does this parameter affect training, and how to confirm optimized parameters of validation_data
?
I know validation dataset
is used for models to tune optimal parameters. But I cannot imagine the difference between with and without validation_data
.
Is e.g. the learning rate of back-propagation is automatically optimized by the validation dataset?
I have read the following What is the difference between test set and validation set?
Validation set: a set of examples used to tune the parameters of a classifier. In the MLP case, we would use the validation set to find the "optimal" number of hidden units or determine a stopping point for the back-propagation algorithm