Skip to content

Instantly share code, notes, and snippets.

@itsuncheng
Created July 26, 2020 04:02
Show Gist options
  • Select an option

  • Save itsuncheng/a2fbfca70867456bbeaf88f3a28a89c7 to your computer and use it in GitHub Desktop.

Select an option

Save itsuncheng/a2fbfca70867456bbeaf88f3a28a89c7 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(10,5))
plt.title("Generator and Discriminator Loss During Training")
plt.plot(G_losses,label="G")
plt.plot(D_losses,label="D")
plt.xlabel("iterations")
plt.ylabel("Loss")
plt.legend()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment