Skip to content

rohts-patil/Behavioral-Cloning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Behavioral-Cloning

This repo contains code for a project I did as a part of Udacity's Self Driving Car Nano Degree Program. We had to train a car to drive itself in a simulator. The car was trained to drive itself using a deep neural network.

Datset

I used the dataset provided by Udacity which are about 8000 images. More images can be generated using Udacity's simulator.

The dataset contains JPG images of dimensions 160x320x3. Here are some sample images from the dataset.

Sample Images

Steering Angle Histogram

By observing this histogram we can say that much of the dataset has 0 steering angle and due to this model may be biased towards it.

Steering Angle Histogram

Augmentation Techniques Used and Architecture

Nvidia's Architecture

I have to thank this NVIDIA paper and this blog post for suggesting these techniques.

1.Flip the images horizontally. 2.Brightness Adjustment. 3.Adding random shadows.

Below is an example of generated data from the image source.

Sample Generated Data

Architecture Specification:

  • Input Layer is 66 x 220 x 3
  • Normalization Layer
  • Convolutional Layer 1: 5 x 5 Kernel, 2 x 2 stride, valid padding, Output: 3 x 66 x 200
  • Convolutional Layer 2: 5 x 5 Kernel, 2 x 2 stride, valid padding, Output: 24 x 31 x 98
  • Convolutional Layer 3: 5 x 5 Kernel, 2 x 2 stride, valid padding, Output: 36 x 14 x 47
  • Convolutional Layer 4: 5 x 5 Kernel, 3 x 3 stride, valid padding, Output: 48 x 5 x 22
  • Convolutional Layer 5: 5 x 5 Kernel, 3 x 3 stride, valid padding, Output: 64 x 3 x 20
  • Flatten Layer 1: Output: 64 x 1 x 18
  • Fully-Connected Layer 1: Output 1152 neurons
  • Fully-Connected Layer 2: Output 100 neurons
  • Fully-Connected Layer 3: Output 50 neurons
  • Fully-Connected Layer 3: Output 10 neurons
  • Final Output: 1

Here normalization is used to avoid over fitting.

Preproceesing Images

  1. I noticed that the bonet of the car is visible in the lower portion of the image.
  2. And also the portion above the horizon can also be ignored. We can crop the image and remove this.

Final Image

There are many hyper-parameters to tune:

  • number of iterations
  • number of epochs
  • batch size
  • Adam optimizer parameters (learning rate, beta_1, beta_2, and decay)

I observed that increasing the epochs does not necessarily reduce loss.So by trial and error I tuned the parameters.

Simulation on the Test Track

Here is the Driving Simulation on the Test Track.

About

SDCND Project 3. Drive your car through the simulator using deep learning

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages