{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Machine Learning Engineer Nanodegree\n", "## Deep Learning\n", "## Project: Build a Digit Recognition Program\n", "\n", "In this notebook, a template is provided for you to implement your functionality in stages which is required to successfully complete this project. If additional code is required that cannot be included in the notebook, be sure that the Python code is successfully imported and included in your submission, if necessary. Sections that begin with **'Implementation'** in the header indicate where you should begin your implementation for your project. Note that some sections of implementation are optional, and will be marked with **'Optional'** in the header.\n", "\n", "In addition to implementing code, there will be questions that you must answer which relate to the project and your implementation. Each section where you will answer a question is preceded by a **'Question'** header. Carefully read each question and provide thorough answers in the following text boxes that begin with **'Answer:'**. Your project submission will be evaluated based on your answers to each of the questions and the implementation you provide.\n", "\n", ">**Note:** Code and Markdown cells can be executed using the **Shift + Enter** keyboard shortcut. In addition, Markdown cells can be edited by typically double-clicking the cell to enter edit mode." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "## Step 1: Design and Test a Model Architecture\n", "Design and implement a deep learning model that learns to recognize sequences of digits. Train the model using synthetic data generated by concatenating character images from [notMNIST](http://yaroslavvb.blogspot.com/2011/09/notmnist-dataset.html) or [MNIST](http://yann.lecun.com/exdb/mnist/). To produce a synthetic sequence of digits for testing, you can for example limit yourself to sequences up to five digits, and use five classifiers on top of your deep network. You would have to incorporate an additional ‘blank’ character to account for shorter number sequences.\n", "\n", "There are various aspects to consider when thinking about this problem:\n", "- Your model can be derived from a deep neural net or a convolutional network.\n", "- You could experiment sharing or not the weights between the softmax classifiers.\n", "- You can also use a recurrent network in your deep neural net to replace the classification layers and directly emit the sequence of digits one-at-a-time.\n", "\n", "You can use ** Keras ** to implement your model. Read more at [keras.io](https://keras.io/).\n", "\n", "Here is an example of a [published baseline model on this problem](http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/42241.pdf). ([video](https://www.youtube.com/watch?v=vGPI_JvLoN0)). You are not expected to model your architecture precisely using this model nor get the same performance levels, but this is more to show an exampe of an approach used to solve this particular problem. We encourage you to try out different architectures for yourself and see what works best for you. Here is a useful [forum post](https://discussions.udacity.com/t/goodfellow-et-al-2013-architecture/202363) discussing the architecture as described in the paper and here is [another one](https://discussions.udacity.com/t/what-loss-function-to-use-for-multi-digit-svhn-training/176897) discussing the loss function." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Implementation\n", "Use the code cell (or multiple code cells, if necessary) to implement the first step of your project. Once you have completed your implementation and are satisfied with the results, be sure to thoroughly answer the questions that follow." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "\n", "\n", "### Your code implementation goes here.\n", "### Feel free to use as many code cells as needed.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 1\n", "_What approach did you take in coming up with a solution to this problem?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:** " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 2\n", "_What does your final architecture look like? (Type of model, layers, sizes, connectivity, etc.)_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 3\n", "_How did you train your model? How did you generate your synthetic dataset?_ Include examples of images from the synthetic data you constructed." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "## Step 2: Train a Model on a Realistic Dataset\n", "Once you have settled on a good architecture, you can train your model on real data. In particular, the [Street View House Numbers (SVHN)](http://ufldl.stanford.edu/housenumbers/) dataset is a good large-scale dataset collected from house numbers in Google Street View. Training on this more challenging dataset, where the digits are not neatly lined-up and have various skews, fonts and colors, likely means you have to do some hyperparameter exploration to perform well." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Implementation\n", "Use the code cell (or multiple code cells, if necessary) to implement the first step of your project. Once you have completed your implementation and are satisfied with the results, be sure to thoroughly answer the questions that follow." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "\n", "\n", "### Your code implementation goes here.\n", "### Feel free to use as many code cells as needed.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 4\n", "_Describe how you set up the training and testing data for your model. How does the model perform on a realistic dataset?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 5\n", "_What changes did you have to make, if any, to achieve \"good\" results? Were there any options you explored that made the results worse?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 6\n", "_What were your initial and final results with testing on a realistic dataset? Do you believe your model is doing a good enough job at classifying numbers correctly?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "## Step 3: Test a Model on Newly-Captured Images\n", "\n", "Take several pictures of numbers that you find around you (at least five), and run them through your classifier on your computer to produce example results. Alternatively (optionally), you can try using OpenCV / SimpleCV / Pygame to capture live images from a webcam and run those through your classifier." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Implementation\n", "Use the code cell (or multiple code cells, if necessary) to implement the first step of your project. Once you have completed your implementation and are satisfied with the results, be sure to thoroughly answer the questions that follow." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "\n", "\n", "### Your code implementation goes here.\n", "### Feel free to use as many code cells as needed.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 7\n", "_Choose five candidate images of numbers you took from around you and provide them in the report. Are there any particular qualities of the image(s) that might make classification difficult?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 8\n", "_Is your model able to perform equally well on captured pictures or a live camera stream when compared to testing on the realistic dataset?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Optional: Question 9\n", "_If necessary, provide documentation for how an interface was built for your model to load and classify newly-acquired images._" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:** Leave blank if you did not complete this part." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "### Step 4: Explore an Improvement for a Model\n", "\n", "There are many things you can do once you have the basic classifier in place. One example would be to also localize where the numbers are on the image. The SVHN dataset provides bounding boxes that you can tune to train a localizer. Train a regression loss to the coordinates of the bounding box, and then test it. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Implementation\n", "Use the code cell (or multiple code cells, if necessary) to implement the first step of your project. Once you have completed your implementation and are satisfied with the results, be sure to thoroughly answer the questions that follow." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "\n", "\n", "### Your code implementation goes here.\n", "### Feel free to use as many code cells as needed.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 10\n", "_How well does your model localize numbers on the testing set from the realistic dataset? Do your classification results change at all with localization included?_" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Question 11\n", "_Test the localization function on the images you captured in **Step 3**. Does the model accurately calculate a bounding box for the numbers in the images you found? If you did not use a graphical interface, you may need to investigate the bounding boxes by hand._ Provide an example of the localization created on a captured image." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Answer:**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "----\n", "## Optional Step 5: Build an Application or Program for a Model\n", "Take your project one step further. If you're interested, look to build an Android application or even a more robust Python program that can interface with input images and display the classified numbers and even the bounding boxes. You can for example try to build an augmented reality app by overlaying your answer on the image like the [Word Lens](https://en.wikipedia.org/wiki/Word_Lens) app does.\n", "\n", "Loading a TensorFlow model into a camera app on Android is demonstrated in the [TensorFlow Android demo app](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/android), which you can simply modify.\n", "\n", "If you decide to explore this optional route, be sure to document your interface and implementation, along with significant results you find. You can see the additional rubric items that you could be evaluated on by [following this link](https://review.udacity.com/#!/rubrics/413/view)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Optional Implementation\n", "Use the code cell (or multiple code cells, if necessary) to implement the first step of your project. Once you have completed your implementation and are satisfied with the results, be sure to thoroughly answer the questions that follow." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "\n", "\n", "### Your optional code implementation goes here.\n", "### Feel free to use as many code cells as needed.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Documentation\n", "Provide additional documentation sufficient for detailing the implementation of the Android application or Python program for visualizing the classification of numbers in images. It should be clear how the program or application works. Demonstrations should be provided. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "_Write your documentation here._" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> **Note**: Once you have completed all of the code implementations and successfully answered each question above, you may finalize your work by exporting the iPython Notebook as an HTML document. You can do this by using the menu above and navigating to \n", "**File -> Download as -> HTML (.html)**. Include the finished document along with this notebook as your submission." ] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.11" } }, "nbformat": 4, "nbformat_minor": 0 }