Project - Fashion MNIST

3 / 22

End to End ML Project - Fashion MNIST - Defining Functions

Let us define some functions which will be used in this course.

The showImage() function given below displays the input dataset instance (image) on the screen.

INSTRUCTIONS

Copy paste the below function as is:

def showImage(data):
    some_article = data   # Selecting the image.
    some_article_image = some_article.reshape(28, 28) # Reshaping it to get the 28x28 pixels
    plt.imshow(some_article_image, cmap = matplotlib.cm.binary, interpolation="nearest")
    plt.axis("off")
    plt.show()
Get Hint

Answer is not availble for this assesment

Loading comments...