Difference between revisions of "OHMC2019 Software instructions"

From Open Hardware Miniconf
Jump to: navigation, search
(Overview)
(Software installation: Laptop / Desktop)
Line 6: Line 6:
  
 
== Software installation: Laptop / Desktop ==
 
== Software installation: Laptop / Desktop ==
 +
 +
* apt-get install -y virtualenv  # Note: You may be using a different software installer
 +
* mkvirtualenv donkeycar -p python3
 +
* pip install tensorflow==1.8.0
 +
 +
* cd $HOME
 +
* git clone https://github.com/autorope/donkeycar
 +
* pip install -e ./donkeycar
  
 
== Software installation: Raspberry Pi ==
 
== Software installation: Raspberry Pi ==

Revision as of 21:53, 20 January 2019

Overview

From a software perspective, the DonkeyCar (Raspberry Pi) is self-contained ... driving, data acquisition (for training) and ultimately self-driving are all performed with on-board software. The provided micro-SD card already has all the required software pre-installed, as well as two pre-training A.I / Machine Learning models. The DonkeyCar software includes a web-server that provides a web interface that works on both desktop and mobile web browsers (great for driving).

Your laptop will be required to perform training of the Neural Network ... using the data acquired on the DonkeyCar. This means that Python software will need to be installed, e.g TensorFlow (Machine Learning framework).

Software installation: Laptop / Desktop

  • apt-get install -y virtualenv # Note: You may be using a different software installer
  • mkvirtualenv donkeycar -p python3
  • pip install tensorflow==1.8.0

Software installation: Raspberry Pi

Driving the car manually

Data acquisition for the Neural Network

Training the Neural Network

Self-driving the car