Skip to content

Deep Learning Capstone Project: Machine Learning Nanodegree (UDACITY)

Notifications You must be signed in to change notification settings

camigord/ML_CapstoneProject

Repository files navigation

Deep Learning Capstone Project

Udacity - Machine Learning Nanodegree - Capstone Project

This is my capstone project for the Udacity Machine Learning Nanodegree. I implemented an application which detects, localizes and interprets number strings in real-world images.

model

A report describing the development of the current project can be found together with the code.

I used TensorFlow to train the model, and OpenCV to capture webcam frames.

All the code was implemented as Jupyter Notebooks (Python 2.7). The following is a description of each one of the available files:

  • 1_CreateSyntheticData.ipynb:

Generates Synthetic training samples by concatenating digits from the MNIST dataset. The code assumes that TensorFlow is installed and loads the data from its tutorials.

  • 2_TrainSyntheticModel.ipynb

Trains an initial and very simple convolutional model using the previously generated synthetic images.

  • 3_Preprocess_SVHN.ipynb

Downloads, extracts and preprocess the SVHN dataset in order to generate a more real and challenging training dataset. All the preprocessing steps are described in the report file.

  • 4_TrainingOnSVHN.ipynb

Defines and trains the model architecture used to decode sequences of digits from input images. It employes the datasets generated by the previous script.

  • 5_Generate_Regression_Datasets.ipynb

We train an additional regression model to detect and localize the number strings within the original image. This file uses some of the results from the 3_Preprocess_SVHN file and generates a training dataset which allow us to identify the bounding box surrounding the numbers.

  • 6_Train_Regression_Model.ipynb

Defines and trains the regression model which outputs the coordinates of the bounding box surrounding the numbers in the image (if any). It employes the datasets generated by the previous script.

  • 7_Evaluate_Models.ipynb

Finally, this script loads both models and uses OpenCV to capture frames from a WebCam and test the performance of the proposed approach on those images. OpenCV and its video codecs are requied to capture camera frames.

The folder Models/ contains all the pretrained parametes.

About

Deep Learning Capstone Project: Machine Learning Nanodegree (UDACITY)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published