Created
October 17, 2022 13:43
-
-
Save crhea93/ae23782d6455ee3db321275a0a4c36ac to your computer and use it in GitHub Desktop.
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
plt.plot(np.linspace(0, epochs, epochs), training_loss, label='training') | |
plt.plot(np.linspace(0, epochs, epochs), valid_loss, label='validation') | |
plt.legend() | |
plt.show() | |
plt.plot(np.linspace(0, epochs, epochs), learning_rates[1:], label='learning rate') | |
plt.legend() | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment