This is a proposal to solve the speed prediction challenge posted by https://comma.ai/. 3D Convolutional Network [1] is used to predict car speed using dashcam footage. The trained network is good enough to make reasonable prediction on arbitrary footages.
The final mean squared error on validation set is 3.1!
The result on comma.ai validation footage (MSE of 3.1):
The result on 28 minute udacity footage (MSE of 23.28):
Note that this is the result when the network is purely trained on comma.ai data and tested on udacity data with completely different lighting conditions and different scene dynamics. Most of the error on the udacity footage occurs at the turns, which is limitedly seen in comma.ai dataset.
[1] Learning Spatiotemporal Features with 3D Convolutional Networks (https://arxiv.org/abs/1412.0767)
[2] Unsupervised Learning of Video Representations using LSTMs (https://arxiv.org/abs/1502.04681)
Take a look at a similar attempt at https://github.com/JonathanCMitchell/speedChallenge
Network architecture
Validation losses
Download the weights pretrained on the Sports-1M dataset [https://goo.gl/tsEUo2]
Download the training data from comma.ai website [https://goo.gl/ERi7Uh]
Follow the steps in "Dashcam Speed - C3D.ipynb" for a walk-through of the training and testing of the network