When I run the code below, the images are displayed vertically (The first time I ran the code below, I did not see any output on Jupyter NB). I was expecting to see them horizontally. If anyone knows how I can display them horizontally, please feel free to comment. Thanks!
for i in range(10):
plt.figure(figsize=(20,3))
plt.imshow(predictions[i].astype("float32"), cmap="gray_r")
plt.show()