├── .github └── FUNDING.yml ├── Autopilot ├── DriveApp.py ├── LoadData.py ├── TrainModel.py ├── models │ └── Autopilot.h5 ├── readme.md └── resources │ ├── run.mp4 │ └── steering_wheel_image.jpg ├── Autopilot_V2 ├── AutopilotApp_V2.py ├── LoadData_V2.py ├── Train_pilot_V2.py ├── models │ └── Autopilot_V2.h5 ├── readme.md └── resources │ └── steering_wheel_image.jpg ├── LICENSE.txt ├── readme.md └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Autopilot/DriveApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/DriveApp.py -------------------------------------------------------------------------------- /Autopilot/LoadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/LoadData.py -------------------------------------------------------------------------------- /Autopilot/TrainModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/TrainModel.py -------------------------------------------------------------------------------- /Autopilot/models/Autopilot.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/models/Autopilot.h5 -------------------------------------------------------------------------------- /Autopilot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/readme.md -------------------------------------------------------------------------------- /Autopilot/resources/run.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/resources/run.mp4 -------------------------------------------------------------------------------- /Autopilot/resources/steering_wheel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot/resources/steering_wheel_image.jpg -------------------------------------------------------------------------------- /Autopilot_V2/AutopilotApp_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/AutopilotApp_V2.py -------------------------------------------------------------------------------- /Autopilot_V2/LoadData_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/LoadData_V2.py -------------------------------------------------------------------------------- /Autopilot_V2/Train_pilot_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/Train_pilot_V2.py -------------------------------------------------------------------------------- /Autopilot_V2/models/Autopilot_V2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/models/Autopilot_V2.h5 -------------------------------------------------------------------------------- /Autopilot_V2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/readme.md -------------------------------------------------------------------------------- /Autopilot_V2/resources/steering_wheel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/Autopilot_V2/resources/steering_wheel_image.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybahadur21/Autopilot/HEAD/requirements.txt --------------------------------------------------------------------------------