Skip to content

Instantly share code, notes, and snippets.

@SubhadityaMukherjee
Created February 13, 2020 06:47
Show Gist options
  • Save SubhadityaMukherjee/61a7d9f8da9388a1e6ebb0ec1fa9ca52 to your computer and use it in GitHub Desktop.
Save SubhadityaMukherjee/61a7d9f8da9388a1e6ebb0ec1fa9ca52 to your computer and use it in GitHub Desktop.
oss
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