Google Maps Traffic Prediction
http://ec2-52-33-204-53.us-west-2.compute.amazonaws.com:5000
I used the SCIKIT-LEARN machine learning algorithm's Support Vector Machines (SVM) class to model our traffic prediction. SVM is set of supervised learning methods used for classification, regression and outliers detection. It is more effective than Linear Regression especially in high dimensional spaces. In our traffic prediction, it is ideal because our data consists multiple dimensions and a potential large number of dimensions is greater than the number of samples. Our SVC uses gamma value of 0.001 and C=100. Below is an illustration of the SVC model from the SCIKIT-LEARN website: