Classify Images With Deep Learning- MNIST Dataset

Yi-Pei Chan

1. About the Data

The MNIST database of handwritten digits, available on http://yann.lecun.com/exdb/mnist/, has a training set of 60,000 examples, and a test set of 10,000 examples. It is a subset of a larger set available from NIST. The digits have been size-normalized and centered in a fixed-size image.

2. Deep Learning Model - Using Tensorflow Keras

Using deep learning with 1 hidden layer to make predictions. Set the activation function as sigmoid function, and output function as softmax function.