Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save saimadhu-polamuri/396b465e1af234f6417b985c5c54ee95 to your computer and use it in GitHub Desktop.
Save saimadhu-polamuri/396b465e1af234f6417b985c5c54ee95 to your computer and use it in GitHub Desktop.
## Dropout applyied model train and test error
plt.plot(history.history['loss'], label='train')
plt.plot(history.history['val_loss'], label='test')
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment