Fitting a Model
Learn about model fitting on the training dataset using Keras.
We'll cover the following...
The fit
method
The fit step applies backpropagation on your data to update the weights. The main purpose is to show model performance on the training data as the model weights become updated. We can train or fit our model on our training data by calling the fit()
method.
Arguments for the fit
method
The fit
method takes in the training features X
and the label ...
Access this course and 1400+ top-rated courses and projects.