This file contains 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
acc = history.history['accuracy'] | |
val_acc = history.history['val_accuracy'] | |
loss = history.history['loss'] | |
val_loss = history.history['val_loss'] | |
epochs = range(len(acc)) | |
plt.figure(figsize=(7,7)) | |
plt.plot(epochs, acc, 'r', label='Training accuracy') | |
plt.plot(epochs, val_acc, 'b', label='Validation accuracy') | |
plt.title('Training and validation accuracy') | |
plt.legend() | |
plt.figure(figsize=(7,7)) | |
plt.plot(epochs, loss, 'r', label='Training Loss') | |
plt.plot(epochs, val_loss, 'b', label='Validation Loss') | |
plt.title('Training and validation loss') | |
plt.legend() | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment