Autonmous Vehicle Project at Fubar Labs for the Autonomous Powerwheels Racing compeition.
- Autonmous Powerwheels Racing event will be Makerfaire NYC 2017
- Autonmous Vehicle Competition via Sparkfun at Denver Makerfaire 2017
Autonomous Project Documenatation
Simple model in basic_model.py
. Currently linear with mean squared error loss (summed over outputs?)
- Webcam image
- Current Accel
- Current Speed
- Current Distance from rangefinder
- Current Steering wheel angle
- Steering Wheel angle
- Maybe speed?
Driving model is in current_model.py
. Weights are on Google Drive. Line 74 of the model will have to be changed to reflect the true location/name of the weights file.
#Python Libraries
import os
import math
import numpy as np
import h5py
import glob
import scipy
import scipy.misc
import random
import argparse