March 2018
Intermediate to advanced
272 pages
7h 53m
English
Each input observation is a 28 pixel by 28 pixel black and white image. An image like this one is represented on disk as a 28x28 matrix of values between 0 and 255, where each value is the intensity of black in that pixel. At this point, we only know how to train networks on two-dimensional vectors (we will learn a better way to do this later); so we will flatten this 28x28 matrix into a 1 x 784 input vector.
Once we stack all those 1x784 vectors, we are left with a 50,000 x 784 training set.
Read now
Unlock full access