Skip to content

Instantly share code, notes, and snippets.

@um4ng-tiw
Created June 28, 2021 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save um4ng-tiw/941129076415fae4a6ec7daa3c0314d3 to your computer and use it in GitHub Desktop.
Save um4ng-tiw/941129076415fae4a6ec7daa3c0314d3 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(x[i])
plt.title('Original: {}, Predicted: {}'.format(y[i], pred_array[i]))
plt.axis('Off')
plt.subplots_adjust(left=1.5, right=3, top=1.2)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment