How do we predict the image in this fashion mnist by using cnn

Here we train the dataset but if we want to predict then how should we do it

Hey @avanishsinghal149

If your model is trained over the mnist-fashion dataset, you can predict labels over the test images using:

model.predict(image)

The image must be of the size (28*28), this will output a label from 0-9
you can create a dictionary to find a value for the label key

images%20(1)

Thank you.