All Projects → llSourcell → Self Driving Car Demo

llSourcell / Self Driving Car Demo

Licence: mit
Self Driving Car Demo for Fresh Machine Learning #6

Programming Languages

python
139335 projects - #7 most used programming language

Self Driving Car Demo

Overview

A project that trains a virtual car to how to move an object around a screen (drive itself) without running into obstacles using a type of reinforcement learning called Q-Learning. More information can be found on the writeup about this project in part 1, part 2, and part 3. This the code for 'Build an Self Driving Car in 5 Min' on Youtube

Dependencies

Use pip to install any missing dependencies

Basic Usage

  1. Update pymunk to python3 by CDing into its directory and running 2to3 -w *.py

  2. First, you need to train a model. This will save weights to the saved-models folder. You may need to create this folder before running. You can train the model by running python3 learning.py It can take anywhere from an hour to 36 hours to train a model, depending on the complexity of the network and the size of your sample. However, it will spit out weights every 25,000 frames, so you can move on to the next step in much less time.

  3. Edit the nn.py file to change the path name for the model you want to load. Sorry about this, I know it should be a command line argument. Then, watch the car drive itself around the obstacles! Run python3 playing.py

  4. Once you have a bunch of CSV files created via the learning, you can convert those into graphs by running: python3 plotting.py

This will also spit out a bunch of loss and distance averages at the different parameters. That's it!

Credits

Credit for the vast majority of code here goes to Harvitronix. I've merely created a wrapper around all of the important functions to get people started. Below are a few sources he cited.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].