Skip to content

Instantly share code, notes, and snippets.

@staricon12
Created July 13, 2021 05:56
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 staricon12/17f7cc10637c6e4e69b0c675e5505bcc to your computer and use it in GitHub Desktop.
Save staricon12/17f7cc10637c6e4e69b0c675e5505bcc to your computer and use it in GitHub Desktop.
# Model Accuracy
plt.plot(history1.history['accuracy'])
plt.plot(history1.history['val_accuracy'])
plt.title('Model accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment