JingqingZ / BaiduTraffic

This repo includes introduction, code and dataset of our paper Deep Sequence Learning with Auxiliary Information for Traffic Prediction (KDD 2018).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question regarding baseline models

prateikarora opened this issue · comments

In the baseline models that you implemented(specifically RF and SVR); were they trained solely on the temporal data or the entire spatio-temporal data?

Hi, the baselines (RF and SVR) were trained and tested on traffic speed data only, which means we used (v_1, v_2, ... v_t) to predict (v_{t+1}, ...). For your reference, the implementation of baselines can be found at line43 src/baselines.py. Thanks!