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()
Created
February 13, 2020 06:47
-
-
Save SubhadityaMukherjee/61a7d9f8da9388a1e6ebb0ec1fa9ca52 to your computer and use it in GitHub Desktop.
oss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment