I am using colab notebook for generating some numbers using autoencoders. I am able to generate the numbers successfully but it is really small and invisible. I am using matplotlib for data viz.
Here is my plot_image
function:
def plot_image(image, shape=[28,28]):
plt.imshow(image.reshape(shape), cmap="Greys", interpolation="nearest")
plt.axis("off")
Here is my code for visualizing the numbers:
for iteration in range(n_digits):
plt.subplot(n_digits, 10, iteration+1)
plot_image(outputs_val[iteration])
I am also using matplotlib inline function as:
%matplotlib inline
Can anyone guide me to visualize my result with a bigger plot? I am attaching the screenshot of my generated result.Thanks in advance guys.