Skip to content

Spatio-Temporal Graph Convolutional Networks

Notifications You must be signed in to change notification settings

franchg/STGCN_IJCAI-18

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Spatio-Temporal Graph Convolutional Networks:
A Deep Learning Framework for Traffic Forecasting

Introduction

We propose a novel deep learning framework, STGCN, to tackle time series prediction problem in traffic domain. Instead of applying regular convolutional and recurrent units, we formulate the problem on graphs and build the model with complete convolutional structures. To the best of our knowledge, it is the first time that to apply purely convolutional structures to extract spatio-temporal features simultaneously from graph-structured time series in a traffic study.

Problem Formulation

Traffic forecast is a typical time-series prediction problem, i.e. predicting the most likely traffic measurements (e.g. speed or traffic flow) in the next H time steps given the previous M observations from traffic network G as,

Fig.1 Graph-structured traffic data.
Each indicates a frame of current traffic status at time step t, which is recorded in a graph-structured data matrix.

Network Structure

Fig. 2 Architecture of spatio-temporal graph convolutional networks.
The framework STGCN consists of two spatio-temporal convolutional blocks (ST-Conv blocks) and a fully-connected output layer in the end. Each ST-Conv block contains two temporal gated convolution layers and one spatial graph convolution layer in the middle. The residual connection and bottleneck strategy are applied inside each block. The input is uniformly processed by ST-Conv blocks to explore spatial and temporal dependencies coherently. Comprehensive features are integrated by an output layer to generate the final prediction .

Results

Model PeMSD7(M) (15/30/45 min) PeMSD7(L) (15/30/45 min)
/ MAE MAPE(%) RMSE MAE MAPE(%) RMSE
HA 4.01 10.61 7.20 4.60 12.50 8.05
LSVR 2.50/3.63/4.54 5.81/8.88/11.50 4.55/6.67/8.28 2.69/3.85/4.79 6.27/9.48/12.42 4.88/7.10/8.72
ARIMA 5.55/5.86/6.27 12.92/13.94/15.20 9.00/9.13/9.38 5.50/5.87/6.30 12.30/13.54/14.85 8.63/8.96/9.39
FNN 2.74/4.02/5.04 6.38/9.72/12.38 4.75/6.98/8.58 2.74/3.92/4.78 7.11/10.89/13.56 4.87/7.02/8.46
FC-LSTM 3.57/3.94/4.16 8.60/9.55/10.10 6.20/7.03/7.51 4.38/4.51/4.66 11.10/11.41/11.69 7.68/7.94/8.20
GCGRU 2.37/3.31/4.01 5.54/8.06/9.99 4.21/5.96/7.13 2.48/3.43/4.12∗ 5.76/8.45/10.51∗ 4.40/6.25/7.49∗
STGCN(Cheb) 2.25/3.03/3.57 5.26/7.33/8.69 4.04/5.70/6.77 2.37/3.27/3.97 5.56/7.98/9.73 4.32/6.21/7.45
STGCN(1st) 2.26/3.09/3.79 5.24/7.39/9.12 4.07/5.77/7.03 2.40/3.31/4.01 5.63/8.21/10.12 4.38/6.43/7.81

Table 1: Performance comparison of different approaches on the dataset PeMSD7.

Fig. 3: Speed prediction in the morning peak and evening rush hours of the dataset PeMSD7.

Fig. 4: Time consumptions of training on the dataset PeMSD7 (M, left) and (L, right)

Prerequisites

Our code is based on Python3 (>=3.5). There are a few dependencies to run the code. The major libraries are listed as follows:

  • TensorFlow (>= 1.6.0)
  • NumPy (>= 1.15)
  • SciPy (>=1.10)
  • Pandas (>=0.23)

Dataset

Data Source

PeMSD7 was collected from Caltrans Performance Measurement System (PeMS) in real-time by over 39, 000 sensor stations, deployed across the major metropolitan areas of California state highway system. The dataset is also aggregated into 5-minute interval from 30-second data samples. We randomly select a medium and a large scale among the District 7 of California containing 228 and 1, 026 stations, labeled as PeMSD7(M) and PeMSD7(L), respectively, as data sources. The time range of PeMSD7 dataset is in the weekdays of May and June of 2012. We select the first month of historical speed records as training set, and the rest serves as validation and test set respectively.

Data Preprocessing

The standard time interval in two datasets is set to 5 minutes. Thus, every node of the road graph contains 288 data points per day. The linear interpolation method is used to fill missing values after data cleaning. In addition, data input are normalized by Z-Score method.
In PeMSD7, the adjacency matrix of the road graph is computed based on the distances among stations in the traffic network. The weighted adjacency matrix W can be formed as,

All the tests use 60 minutes as the historical time window, a.k.a. 12 observed data points (M = 12) are used to forecast traffic conditions in the next 15, 30, and 45 minutes (H = 3, 6, 9).

Citation

Please refer to our paper. Bing Yu*, Haoteng Yin*, Zhanxing Zhu. Spatio-temporal Graph Convolutional Neural Network: A Deep Learning Framework for Traffic Forecasting. In Proceedings of the 27th International Joint Conference on Artificial Intelligence (IJCAI), 2018

@inproceedings{yu2018spatio,
    title={Spatio-temporal Graph Convolutional Neural Network: A Deep Learning Framework for Traffic Forecasting},
    author={Yu, Bing and Yin, Haoteng and Zhu, Zhanxing},
    booktitle={Proceedings of the 27th International Joint Conference on Artificial Intelligence (IJCAI)},
    year={2018}
}

About

Spatio-Temporal Graph Convolutional Networks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%