Created
July 26, 2020 04:02
-
-
Save itsuncheng/a2fbfca70867456bbeaf88f3a28a89c7 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.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