Skip to content

Instantly share code, notes, and snippets.

@crhea93
Created October 17, 2022 13:43
Show Gist options
  • Save crhea93/ae23782d6455ee3db321275a0a4c36ac to your computer and use it in GitHub Desktop.
Save crhea93/ae23782d6455ee3db321275a0a4c36ac to your computer and use it in GitHub Desktop.
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