Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save um4ng-tiw/93fd33697b2ffe23747fa5be81295ca6 to your computer and use it in GitHub Desktop.
plt.figure(figsize = (10,10))
for i in range(10):
plt.subplot(5,5,i+1)
plt.imshow(y_test[i])
plt.title('Original: {}, Predicted: {}'.format(y_lab[i], pred[i]))
plt.axis('Off')
plt.subplots_adjust(left=1.5, right=2.5, top=1.2)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment