From the training set I took a image(\'img\') of size (3,32,32). I have used plt.imshow(img.T). The image is not clear. Now changes I have to make to image(\'img\') to make it m
Add 0.5:
plt.imshow(np.transpose(img, (1, 2, 0)) + 0.5)