Skip to content

Instantly share code, notes, and snippets.

@siddharthganjoo
Created September 4, 2021 09:22
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/5c3b43aa0ddbbb346a12a2d7c24d6e6b to your computer and use it in GitHub Desktop.
Save siddharthganjoo/5c3b43aa0ddbbb346a12a2d7c24d6e6b to your computer and use it in GitHub Desktop.
plt.plot(history.history['accuracy'], label='accuracy')
plt.plot(history.history['val_accuracy'], label = 'val_accuracy')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend(loc='lower right')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment