Skip to content

Instantly share code, notes, and snippets.

@aravindpai
Created May 27, 2019 06:55
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 aravindpai/da744d1827670d5019ed48d08c608838 to your computer and use it in GitHub Desktop.
Save aravindpai/da744d1827670d5019ed48d08c608838 to your computer and use it in GitHub Desktop.
from matplotlib import pyplot
pyplot.plot(history.history['loss'], label='train')
pyplot.plot(history.history['val_loss'], label='test')
pyplot.legend() pyplot.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment