Login using Social Account
     Continue with GoogleLogin using your credentials
Now we will train the model.
To train the model, we will use a batch size of 5
and 100
epochs and save it in a variable called history
<< your code goes here >> = model.fit(X_train, y_train, batch_size=<< your code goes here >>, epochs=<< your code goes here >>)
Once the training is complete, we will plot the loss and accuracy metrics of the model
pd.DataFrame(history.history).plot(figsize=(8, 5))
plt.grid(True)
plt.gca().set_ylim(0, 1)
plt.show()
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...