Modified based on https://github.com/Nuclearstar/End-to-End-Learning-for-Self-Driving-Cars
tested on Ubuntu 22
You can download the dataset from here for Implementation 1.
You can download the dataset and extract into the repository folder from here for Implementation 2.
- Implementation 1
- Implementation 2
pip install requirements.txt
- Network Used- Convolutional Neural Network(CNN)
- Keras-Tensorflow Architecture
- First use python LoadData.py which will get dataset from folder and store it in a pickle file.
- Now you need to have the data, use python TrainModel.py which will load data from pickle and augment it. After this, the training process begins.
- For testing it on the video you need to use python DriveApp.py
- Use python train.py to train the model.
- Use python run.py to run the model on a live webcam feed.
- Use python run_dataset.py to run the model on the dataset
- Modified based on Nuclearstar's Repo
- This implementation is inspired by Akshay Bahadur's project
- This implementation also took a lot of inspiration from the Sully Chen's work.