Skip to content

Commit 7fedb18

Browse files
committed
Project Complete
0 parents  commit 7fedb18

15 files changed

+23830
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
#**Traffic Sign Recognition**
2+
3+
##Writeup Template
4+
5+
###You can use this file as a template for your writeup if you want to submit it as a markdown file, but feel free to use some other method and submit a pdf if you prefer.
6+
7+
---
8+
9+
**Build a Traffic Sign Recognition Project**
10+
11+
The goals / steps of this project are the following:
12+
* Load the data set (see below for links to the project data set)
13+
* Explore, summarize and visualize the data set
14+
* Design, train and test a model architecture
15+
* Use the model to make predictions on new images
16+
* Analyze the softmax probabilities of the new images
17+
* Summarize the results with a written report
18+
19+
20+
[//]: # (Image References)
21+
22+
[image1]: visualization.png "Visualization"
23+
[image2]: ./examples/grayscale.jpg "Grayscaling"
24+
[image3]: ./examples/random_noise.jpg "Random Noise"
25+
[image4]: ./examples/placeholder.png "Traffic Sign 1"
26+
[image5]: ./examples/placeholder.png "Traffic Sign 2"
27+
[image6]: ./examples/placeholder.png "Traffic Sign 3"
28+
[image7]: ./examples/placeholder.png "Traffic Sign 4"
29+
[image8]: ./examples/placeholder.png "Traffic Sign 5"
30+
31+
## Rubric Points
32+
###Here I will consider the [rubric points](https://review.udacity.com/#!/rubrics/481/view) individually and describe how I addressed each point in my implementation.
33+
34+
---
35+
###Writeup / README
36+
37+
###Data Set Summary & Exploration
38+
39+
####1. Provide a basic summary of the data set. In the code, the analysis should be done using python, numpy and/or pandas methods rather than hardcoding results manually.
40+
41+
I used the pandas library to calculate summary statistics of the traffic
42+
signs data set:
43+
44+
* The size of training set is 34799
45+
* The size of the validation set is 4410
46+
* The size of test set is 12630
47+
* The shape of a traffic sign image is (32,32,3)
48+
* The number of unique classes/labels in the data set is 43
49+
50+
####2. Include an exploratory visualization of the dataset.
51+
52+
Here is an exploratory visualization of the data set. It shows a sample from
53+
each class and a label counts.
54+
55+
![alt text][image1]
56+
57+
###Design and Test a Model Architecture
58+
59+
####1. Describe how you preprocessed the image data. What techniques were chosen and why did you choose these techniques? Consider including images showing the output of each preprocessing technique. Pre-processing refers to techniques such as converting to grayscale, normalization, etc. (OPTIONAL: As described in the "Stand Out Suggestions" part of the rubric, if you generated additional data for training, describe why you decided to generate additional data, how you generated the data, and provide example images of the additional data. Then describe the characteristics of the augmented training set like number of images in the set, number of images for each class, etc.)
60+
61+
As a first step, I normalized the image data so that it would have mean zero and equal variance.
62+
63+
As a second step, I decided to shuffle the data to get rid of bias.
64+
65+
####2. Describe what your final model architecture looks like including model type, layers, layer sizes, connectivity, etc.) Consider including a diagram and/or table describing the final model.
66+
67+
My final model consisted of the following layers:
68+
69+
| Layer | Description |
70+
|:---------------------:|:---------------------------------------------:|
71+
| Input | 32x32x3 RGB image |
72+
| Convolution 5x5 | 1x1 stride, VALID padding, outputs 28x28x6 |
73+
| RELU | activation |
74+
| Max pooling | 2x2 stride, outputs 14x14x6 |
75+
| Convolution 5x5 | 1x1 stride, VALID padding, outputs 10x10x16 |
76+
| RELU | activation |
77+
| Max pooling | 2x2 stride, outputs 5x5x16 |
78+
| Fully connected | outputs 120 |
79+
| RELU | activation |
80+
| DROPOUT | keep_prob = 0.5 |
81+
| Fully connected | outputs 84 |
82+
| RELU | activation |
83+
| DROPOUT | keep_prob = 0.5 |
84+
| Fully connected | outputs 43 |
85+
86+
87+
####3. Describe how you trained your model. The discussion can include the type of optimizer, the batch size, number of epochs and any hyperparameters such as learning rate.
88+
89+
To train the model, I used the Tensorflow CNN architecture with EPOCHS = 5, BATCH_SIZE = 256 and learning rate = 0.0009. 5 epochs was enough to get a validation accuracy over 95% and after a few epochs accuracy didn't really improve significantly.
90+
91+
####4. Describe the approach taken for finding a solution and getting the validation set accuracy to be at least 0.93. Include in the discussion the results on the training, validation and test sets and where in the code these were calculated. Your approach may have been an iterative process, in which case, outline the steps you took to get to the final solution and why you chose those steps. Perhaps your solution involved an already well known implementation or architecture. In this case, discuss why you think the architecture is suitable for the current problem.
92+
93+
My final model results were:
94+
* train set accuracy of 0.999
95+
* validation set accuracy of 0.961
96+
* test set accuracy of 0.945
97+
98+
To avoid overfitting I included dropout layers. But since I didn't create an augmented dataset, I think the train set accuracy is too high and this is an indication of some overfitting. Nevertheless, the high accuracy in validation and test sets was satisfying.
99+
100+
And to increase validation accuracy, I reduced the learning rate to 0.0009 after some trial and error.
101+
102+
For this problem, convolutional layers worked well since we are dealing with images. My architecture is the LeNet architecture.
103+
104+
###Test a Model on New Images
105+
106+
####1. Choose five German traffic signs found on the web and provide them in the report. For each image, discuss what quality or qualities might be difficult to classify.
107+
108+
Five German traffic signs that I found on the web are in the folder test_images.
109+
110+
111+
####2. Discuss the model's predictions on these new traffic signs and compare the results to predicting on the test set. At a minimum, discuss what the predictions were, the accuracy on these new predictions, and compare the accuracy to the accuracy on the test set (OPTIONAL: Discuss the results in more detail as described in the "Stand Out Suggestions" part of the rubric).
112+
113+
Here are the results of the prediction:
114+
115+
| Image | Prediction |
116+
|:---------------------:|:---------------------------------------------:|
117+
| Right-of-way | Right-of-way |
118+
| No entry | No entry |
119+
| Speed 30 km/h | Speed 30 km/h |
120+
| Stop Sign | Stop sign |
121+
| Speed 20 km/h | Speed 80 km/h |
122+
123+
124+
The model was able to correctly guess 4 of the 5 traffic signs, which gives an accuracy of 80%. I feel like this accuracy would be higher if I used more than five images and more
125+
classes.
126+
127+
####3. Describe how certain the model is when predicting on each of the five new images by looking at the softmax probabilities for each prediction. Provide the top 5 softmax probabilities for each image along with the sign type of each probability. (OPTIONAL: as described in the "Stand Out Suggestions" part of the rubric, visualizations can also be provided such as bar charts)
128+
129+
Except the last image, which is Speed 20 km/h, the model was correctly predicting the
130+
labels with 1.00 probability.
131+
132+
For the last image, the model is relatively sure that this is a Speed 80 km/h.

0 commit comments

Comments
 (0)