Lane Following Autopilot with Keras and Tensorflow
wroscoe.github.io
Lane Following Autopilot with Keras and Tensorflow
1–10 of 78 posts
Re: Lane Following Autopilot with Keras and Tensorflow
#2Re: Lane Following Autopilot with Keras and Tensorflow
#3Re: Lane Following Autopilot with Keras and Tensorflow
#4Re: Lane Following Autopilot with Keras and Tensorflow
#5Nicely done! But I'm assuming that this is more of an exercise rather than a real-world application of ML? I say this because the task of keeping a car between two lines is trivially done using control algorithms. Of course, the CV part -- "seeing" the lines -- requires some form of ML to work in the real world.
Re: Lane Following Autopilot with Keras and Tensorflow
#6Nicely done! But I'm assuming that this is more of an exercise rather than a real-world application of ML? I say this because the task of keeping a car between two lines is trivially done using control algorithms. Of course, the CV part -- "seeing" the lines -- requires some form of ML to work in the real world.
Is it really trivial? Honest question... Which control algorithms are you speaking of?
Re: Lane Following Autopilot with Keras and Tensorflow
#7This is nice work, but anyone wanting to try it for themselves should be warned that you shouldn't unpickle data received from an untrusted source. https://blog.nelhage.com/2011/03/exploiting-pickle/
Re: Lane Following Autopilot with Keras and Tensorflow
#8Nicely done! But I'm assuming that this is more of an exercise rather than a real-world application of ML? I say this because the task of keeping a car between two lines is trivially done using control algorithms. Of course, the CV part -- "seeing" the lines -- requires some form of ML to work in the real world.
> trivially done using control algorithms Is it really trivial? Honest question... Which control algorithms are you speaking of?
Re: Lane Following Autopilot with Keras and Tensorflow
#9Re: Lane Following Autopilot with Keras and Tensorflow
#10Nicely done! But I'm assuming that this is more of an exercise rather than a real-world application of ML? I say this because the task of keeping a car between two lines is trivially done using control algorithms. Of course, the CV part -- "seeing" the lines -- requires some form of ML to work in the real world.
> trivially done using control algorithms Is it really trivial? Honest question... Which control algorithms are you speaking of?
Computing how much of an adjustment is required is where the PID part comes in. The controller uses the Derivative (rate of change) of the error as well the the Integral of the error to improve its estimate. These two values can intuitively be thought of as the predicted error and history of the error, respectively.