https://github.com/akshaybahadur21/Autopilot
This code helps in getting the steering angle of self driving car. The inspiraion is taken from Udacity Self driving car module as well End to End Learning for Self-Driving Cars module from NVIDIA
The End to End Learning for Self-Driving Cars research paper can be found at (https://arxiv.org/abs/1604.07316) This repository uses convnets to predict steering angle according to the road.
You can install Conda for python which resolves all the dependencies for machine learning.
An autonomous car (also known as a driverless car, self-driving car, and robotic car) is a vehicle that is capable of sensing its environment and navigating without human input. Autonomous cars combine a variety of techniques to perceive their surroundings, including radar, laser light, GPS, odometry, and computer vision. Advanced control systems interpret sensory information to identify appropriate navigation paths, as well as obstacles and relevant signage
You can get the dataset at here
If you face any problem, kindly raise an issue
LoadData.py
which will get dataset from folder and store it in a pickle file.TrainModel.py
which will load data from pickle and augment it. After this, the training process begins.DriveApp.py
Download the dataset at here and extract into the repository folder
If you face any problem, kindly raise an issue
LoadData_V2.py
which will get dataset from folder and store it in a pickle file after preprocessing.Train_pilot.py
which will load data from pickle. After this, the training process begins.AutopilotApp_V2.py