This project explores how Convolutional Neural Networks (ConvNets) can be used to identify series of digits in natural images taken from The Street View House Numbers (SVHN) dataset.
All the code in this project has been written using Python 2.7 and the Convolutional Neural Networks have been implemented using TensorFlow.
01-svhn-single-preprocessing.ipynb
: contains code for pre-processing the SVHN 32-by-32 images02-svhn-single-model.ipynb
: contains code for implementing a simple ConvNet for recognising single digits in the SVHN 32-by-32 images using TensorFlow03-mnist-synthetic-dataset.ipynb
: contains code for creating a simplistic synthetic dataset of images with multiple digits created from the MNIST dataset04-mnist-synthetic-model.ipynb
: contains code for implementing a ConvNet for recognising multiple digits in the synthetic MNIST dataset using TensorFlow05-svhn-multi-preprocessing.ipynb
: contains code for pre-processing the original SVHN images06-svhn-multi-model.ipynb
: contains code for implementing a ConvNet for recognising multiple digits from the original SVHN dataset using TensorFlow and TensorBoard.
To start Tensorboard run tensorboard --logdir=logs/<log dir>/
in the project folder.