This is a simple implementation of a basic CNN to recognize hand written digits.
$ git clone https://github.com/shubham1172/MNISTDigitRecoginition
$ cd MNISTDigitRecognition
$ pip3 install -r requirements.txtTo train,
$ python3 train.pyTo start the interactive GUI,
$ python3 play.pyI have used the MNIST dataset for training the CNN. It contains a training set of 60,000 examples, and a test set of 10,000 examples of handwritten digits.
