In this project, you will use what you've learned about deep neural networks and convolutional neural networks to classify traffic signs. You will train and validate a model so it can classify traffic sign images using the German Traffic Sign Dataset. After the model is trained, you will then try out your model on images of German traffic signs that you find on the web.
We have included an Ipython notebook that contains further instructions and starter code. Be sure to download the Ipython notebook.
The project structure has been changed a bit to have multiple files for multiple purposes instead of a single, massive Jupyter Notebook for all the code.
Contains additional traffic sign images downloaded from the Internet and a CSV file with the traffic signs names, data/signnames.csv.
Images generated for the write up.
Source files with the actual proposed solution, in this case in a single Jupyter Notebooks that contains all the project code, including data exploration and augmentation, neural network architecture, training and analysis, all together in a single file.
The project's writeup can be found here.
According to the provided guidelines, a great writeup include the rubric points as well as a detailed description of how to addressed each of them and the code involved (with line-number references and code snippets where necessary), images to demonstrate how the code works with examples and links to other supporting documents or external references.
The goals/steps of this project are:
- Load the data set.
- Explore, summarize and visualize the data set.
- Design, train and test a model architecture.
- Use the model to make predictions on new images.
- Analyze the softmax probabilities of the new images.
- Summarize the results with a written report.
This lab requires:
The lab environment can be created with CarND Term1 Starter Kit. Click here for the details.
- Download the data set. The classroom has a link to the data set in the "Project Instructions" content. This is a pickled dataset in which we've already resized the images to 32x32. It contains a training, validation and test set.
- Clone the project, which contains the Ipython notebook and the writeup template.
git clone https://github.com/udacity/CarND-Traffic-Sign-Classifier-Project
cd CarND-Traffic-Sign-Classifier-Project
jupyter notebook Traffic_Sign_Classifier.ipynb-
The AI Conf 2017 - A visual and intuitive understanding of deep learning:
-
3Blue1Brown Deep Learning Series:
-
Understand and apply CapsNet on Traffic sign classification:
https://becominghuman.ai/understand-and-apply-capsnet-on-traffic-sign-classification-a592e2d4a4ea
