Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save saimadhu-polamuri/c14f2dcabd693fa9fad152668bfd0d39 to your computer and use it in GitHub Desktop.
Save saimadhu-polamuri/c14f2dcabd693fa9fad152668bfd0d39 to your computer and use it in GitHub Desktop.
## Regularization 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