Chapter-4 Deep Learning for Coders with FastAI & Pytorch
Keypoints Lets recognize the Hand Written Digits via MNIST database. A image is an array of numbers / pixels under the hood. We need this because a computer only understand numbers. So, we try to convert all images into numbers and hold them in a data structure like Numpy Array or PyTorch tensor which will make the computations easier. Each Image is two dimensional in nature since they are grey scaled....