Skip to content

Commit e34a887

Browse files
author
Guled Ahmed
committed
My completed traffic sign classifier.
0 parents  commit e34a887

23 files changed

+2382
-0
lines changed

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @domluna

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016-2018 Udacity, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## Project: Build a Traffic Sign Recognition Program
2+
[![Udacity - Self-Driving Car NanoDegree](https://s3.amazonaws.com/udacity-sdc/github/shield-carnd.svg)](http://www.udacity.com/drive)
3+
4+
Overview
5+
---
6+
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](http://benchmark.ini.rub.de/?section=gtsrb&subsection=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.
7+
8+
We have included an Ipython notebook that contains further instructions
9+
and starter code. Be sure to download the [Ipython notebook](https://github.com/udacity/CarND-Traffic-Sign-Classifier-Project/blob/master/Traffic_Sign_Classifier.ipynb).
10+
11+
We also want you to create a detailed writeup of the project. Check out the [writeup template](https://github.com/udacity/CarND-Traffic-Sign-Classifier-Project/blob/master/writeup_template.md) for this project and use it as a starting point for creating your own writeup. The writeup can be either a markdown file or a pdf document.
12+
13+
To meet specifications, the project will require submitting three files:
14+
* the Ipython notebook with the code
15+
* the code exported as an html file
16+
* a writeup report either as a markdown or pdf file
17+
18+
Creating a Great Writeup
19+
---
20+
A great writeup should include the [rubric points](https://review.udacity.com/#!/rubrics/481/view) as well as your description of how you addressed each point. You should include a detailed description of the code used in each step (with line-number references and code snippets where necessary), and links to other supporting documents or external references. You should include images in your writeup to demonstrate how your code works with examples.
21+
22+
All that said, please be concise! We're not looking for you to write a book here, just a brief description of how you passed each rubric point, and references to the relevant code :).
23+
24+
You're not required to use markdown for your writeup. If you use another method please just submit a pdf of your writeup.
25+
26+
The Project
27+
---
28+
The goals / steps of this project are the following:
29+
* Load the data set
30+
* Explore, summarize and visualize the data set
31+
* Design, train and test a model architecture
32+
* Use the model to make predictions on new images
33+
* Analyze the softmax probabilities of the new images
34+
* Summarize the results with a written report
35+
36+
### Dependencies
37+
This lab requires:
38+
39+
* [CarND Term1 Starter Kit](https://github.com/udacity/CarND-Term1-Starter-Kit)
40+
41+
The lab environment can be created with CarND Term1 Starter Kit. Click [here](https://github.com/udacity/CarND-Term1-Starter-Kit/blob/master/README.md) for the details.
42+
43+
### Dataset and Repository
44+
45+
1. 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.
46+
2. Clone the project, which contains the Ipython notebook and the writeup template.
47+
```sh
48+
git clone https://github.com/udacity/CarND-Traffic-Sign-Classifier-Project
49+
cd CarND-Traffic-Sign-Classifier-Project
50+
jupyter notebook Traffic_Sign_Classifier.ipynb
51+
```
52+
53+
### Requirements for Submission
54+
Follow the instructions in the `Traffic_Sign_Classifier.ipynb` notebook and write the project report using the writeup template as a guide, `writeup_template.md`. Submit the project code and writeup document.
55+
56+
## How to write a README
57+
A well written README file can enhance your project and portfolio. Develop your abilities to create professional README files by completing [this free course](https://www.udacity.com/course/writing-readmes--ud777).
58+

Traffic_Sign_Classifier.ipynb

Lines changed: 2078 additions & 0 deletions
Large diffs are not rendered by default.

checkpoint

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
model_checkpoint_path: "lenet"
2+
all_model_checkpoint_paths: "lenet"

examples/grayscale.jpg

25.6 KB
Loading

examples/placeholder.png

5.04 KB
Loading

examples/random_noise.jpg

24.3 KB
Loading

examples/visualization.jpg

15.1 KB
Loading

lenet.data-00000-of-00001

1.29 MB
Binary file not shown.

0 commit comments

Comments
 (0)