Objective : Develop a neural network model capable of recognizing clothing items using the Fashion MNIST dataset. Fashion MNIST dataset : has 28X28 pixel size images, it contains 70,000 images of shirts, pants, boots, etc. Training and Test data : Fashion MNIST Dataset Input : An image of Fashion Output : Able to tell the item with probability. Code link : colab code link - Fashion MNIST The solution we got from Deep neural network solution is as below Now we solve the see the same Fashion MNSIT classification problem using CNN (Convolution neural network). Convolution Neural networks provide better accuracy than Deep neural networks. Let's understand the Convolution Neural network. There are two main concepts of CNN Convolutions Max Pooling Convolutions : The idea of convolution is to create another grid of numbers called kernel or filter which will scan over original pixel values to generate convoluted image. For Corner values, 'o' values wil...