Created
September 16, 2021 11:27
-
-
Save rohan-paul/b26ab0027b1019cb4667490f455db042 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
| for i in range(5): | |
| plt.figure(figsize=(7,7)) | |
| for k in range(20): | |
| noise=np.random.uniform(-1,1,size=[100,noise_shape]) | |
| im=generator.predict(noise) | |
| plt.subplot(5, 4, k+1) | |
| plt.imshow(im[k].reshape(64,64,3)) | |
| plt.xticks([]) | |
| plt.yticks([]) | |
| plt.tight_layout() | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment