**In this project I have used the car simulator provided in this link (https://github.com/udacity/self-driving-car-sim)to drive on the given track and collect data from the simulator. This includes images taken from the top of the car and steering angle while I am driving. I have then used deep learning on keras to develop a network that learns from my driving to predict the steering angles itself. The car simulator then runs in autonomous mode and predicts the steering angles at each point to drive itself on the track. **
Behavioral Cloning Project
The goals / steps of this project are the following:
- Use the simulator to collect data of good driving behavior
- Build, a convolution neural network in Keras that predicts steering angles from images
- Train and validate the model with a training and validation set
- Test that the model successfully drives around track one without leaving the road
- Summarize the results with a written report
Here I will consider the rubric points individually and describe how I addressed each point in my implementation.
My project includes the following files:
- model.py containing the script to create and train the model
- drive.py for driving the car in autonomous mode
- model.h5 containing a trained convolution neural network
- readme.md summarizing the results
Using the Udacity provided simulator and my drive.py file, the car can be driven autonomously around the track by executing
python drive.py model.h5
The model.py file contains the code for training and saving the convolution neural network. The file shows the pipeline I used for training and validating the model, and it contains comments to explain how the code works.
My model consists of a convolution neural network with 3x3 filter and 5x5 filter sizes and depths between 24 and 64 (model.py lines 94-118)
The model includes RELU layers to introduce nonlinearity (code line 20), and the data is normalized in the model using a Keras lambda layer (code line 96).
The model contains dropout layers in order to reduce overfitting (model.py lines 110).
The model was trained and validated on different data sets to ensure that the model was not overfitting. The model was tested by running it through the simulator and ensuring that the vehicle could stay on the track.
The model used an adam optimizer, so the learning rate was not tuned manually (model.py line 118).
Training data was chosen to keep the vehicle driving on the road. I used a combination of center lane driving, recovering from the left and right sides of the road to simulate the car steering off the road and recovering back. I used the left and right images to create more data and used a correction factor of 0.2 for the left and right images.
For details about how I created the training data, see the next section.
The overall strategy for deriving a model architecture was to be able to correctly predict the steering angle using the images taken from the camera. This requires the layers to be able to capture the curvature of the road correctly which is why I started with a few layers of convolutional layers
My first step was to use a convolution neural network model similar to the NVIDIA End-to-End Deep Learning network, I thought this model might be appropriate because it was able to correctly predict steering angles with only the use of deep learning.
In order to gauge how well the model was working, I split my image and steering angle data into a training and validation set. I found that my first model had a low mean squared error on the training set but a high mean squared error on the validation set. This implied that the model was overfitting.
To combat the overfitting, I modified the model so that there was a Dropout() layer after every Dense() layer.
Then I added 'Relu' activations after every convolutional layer
The final step was to run the simulator to see how well the car was driving around track one. There were a few spots where the vehicle fell off the track, especially on areas where there were no lane lines, to improve the driving behavior in these cases, I drove around the edge of the same area and recovered back to the center.
At the end of the process, the vehicle is able to drive autonomously around the track without leaving the road.
The final model architecture (model.py lines 94-118) consisted of a convolution neural network with the following layers and layer sizes:
Layers | Parameters |
---|---|
Lamda | Normalizing between (-0.5,0.5) |
Cropping2D | top=70, bottom=25 |
Convolution2D | Filter size = (5x5x24) |
Activation | 'Relu' |
Convolution2D | Filter size = (5x5x36) |
Activation | 'Relu' |
Convolution2D | Filter size = (5x5x48) |
Activation | 'Relu' |
Convolution2D | Filter size = (5x5x64) |
Activation | 'Relu' |
Flatten | - |
Dense | Output=100 |
Dropout | keep_prob= 0.5 |
Dense | Output=50 |
Dropout | keep_prob= 0.5 |
Dense | Output=10 |
Dropout | keep_prob= 0.5 |
Dense | Output= 1 |
To capture good driving behavior, I first recorded two laps on track one using center lane driving. Here is an example image of center lane driving:
I then recorded the vehicle recovering from the left side and right sides of the road back to center so that the vehicle would learn to .... These images show what a recovery looks like starting from ... :
The above image takes a hard right turn.
The above image takes a softer right turn.
The above image is now back to the centre of the road.
After the collection process, I had 13396 number of data points.
I finally randomly shuffled the data set and put 20% of the data into a validation set.
I used this training data for training the model. The validation set helped determine if the model was over or under fitting. The ideal number of epochs was 3 as evidenced by by the model.ipynb output. I used an adam optimizer so that manually training the learning rate wasn't necessary.
Here are some more example images along with their steering angles in the training set:
steering angle=0
This project taught me how to use deep learning for regression of steering angles. It was a lot of fun training the data myself and then looking at the model slowly learn how to drive. I now have a better understanding on how self driving cars learn in real life. I have uploaded the results of this project on YouTube
To improve the model more data augmentation techniques could be implemented like changing properties of the images like brightness, lighing conditions, visibility etc. It will also be very helpful to use the other track along with the speed element to train the model to be more flexible to unseen driving conditions.