-
-
Save amankharwal/1cdc40b67c33db683f98388b38c86f46 to your computer and use it in GitHub Desktop.
This file contains 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
# Plotting the first 10 images | |
fig, ax = plt.subplots(2,5) | |
fig.set_size_inches(10, 10) | |
k = 0 | |
for i in range(2): | |
for j in range(5): | |
ax[i,j].imshow(training_images[k].reshape(28, 28) , cmap = "gray") | |
k += 1 | |
plt.tight_layout() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment