Created
May 31, 2021 17:53
-
-
Save ParthNipunDave/d48afa8335fee9681aa3af8368274093 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plt.plot(resnet_history.history["loss"],label="train") | |
plt.plot(resnet_history.history["val_loss"],label="val") | |
plt.title("Training Loss and Validation Loss") | |
plt.legend() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment