Skip to content

Instantly share code, notes, and snippets.

@tanmayymishra
Created September 21, 2021 19:39
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 tanmayymishra/c6c667f64a4e9293b9a2071ff8f247d4 to your computer and use it in GitHub Desktop.
Save tanmayymishra/c6c667f64a4e9293b9a2071ff8f247d4 to your computer and use it in GitHub Desktop.
tyre
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model Loss')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend(['Train','Test'], loc= 'upper right');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment