Skip to content

Instantly share code, notes, and snippets.

@siddharthganjoo
Created August 23, 2021 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siddharthganjoo/adf34cecf9402877f241ecb129cbf2bf to your computer and use it in GitHub Desktop.
Save siddharthganjoo/adf34cecf9402877f241ecb129cbf2bf to your computer and use it in GitHub Desktop.
# Model Losss
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model Loss')
plt.ylabel('loss')
plt.xlabel('epoch')
plt.legend(['train', 'test'])
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment