Skip to content

Instantly share code, notes, and snippets.

@zenUnicorn
Created December 12, 2022 16:30
Show Gist options
  • Save zenUnicorn/006b1661b8f48c75b024e41a5544d67d to your computer and use it in GitHub Desktop.
Save zenUnicorn/006b1661b8f48c75b024e41a5544d67d to your computer and use it in GitHub Desktop.
batch_1_img = train_dataset[0]
for i in range(0,32):
img = batch_1_img[0][i]
lab = batch_1_img[1][i]
plt.imshow(img)
plt.title(lab)
plt.axis('off')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment