Skip to content

Instantly share code, notes, and snippets.

@JeremiahKamama
Created July 9, 2021 06:51
Show Gist options
  • Select an option

  • Save JeremiahKamama/034bb38fddc91e5b2d47fd084970b3ab to your computer and use it in GitHub Desktop.

Select an option

Save JeremiahKamama/034bb38fddc91e5b2d47fd084970b3ab to your computer and use it in GitHub Desktop.
plt.figure()
plt.plot(history.history["loss"], label = "Train")
plt.plot(history.history["val_loss"], label = "Test")
plt.title("Loss")
plt.ylabel("Acc")
plt.xlabel("epochs")
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment