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