Created
April 15, 2022 17:07
-
-
Save algonacci/ddbf634a7bb810631c2ca6507825e80a to your computer and use it in GitHub Desktop.
The easiest way to plot the model history metrics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| evaluation = pd.DataFrame(model.history.history) | |
| evaluation[['accuracy', 'val_accuracy']].plot() | |
| evaluation[['loss', 'val_loss']].plot() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment