In driving_data.py, there was an issue reading the steering angle output from the dataset. The issue was caused by splitting the data by space, whereas it should have been split by commas. I added some lines to fix that.
In run_dataset.py, there was an issue with fast forwarding during the loading of testing image data. I imported the time module and normalized the speed by adding one line.
In
driving_data.py
, there was an issue reading the steering angle output from the dataset. The issue was caused by splitting the data by space, whereas it should have been split by commas. I added some lines to fix that.In
run_dataset.py
, there was an issue with fast forwarding during the loading of testing image data. I imported thetime
module and normalized the speed by adding one line.