-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2a7600
commit a1f110d
Showing
4 changed files
with
402 additions
and
2,399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
421 changes: 266 additions & 155 deletions
421
GraphNeuralNetworks/docs/src/tutorials/traffic_prediction.md
Large diffs are not rendered by default.
Oops, something went wrong.
134 changes: 134 additions & 0 deletions
134
GraphNeuralNetworks/docs/src_tutorials/introductory_tutorials/traffic_prediction.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
# # Traffic Prediction using recurrent Temporal Graph Convolutional Network | ||
|
||
# In this tutorial, we will learn how to use a recurrent Temporal Graph Convolutional Network (TGCN) to predict traffic in a spatio-temporal setting. Traffic forecasting is the problem of predicting future traffic trends on a road network given historical traffic data, such as, in our case, traffic speed and time of day. | ||
|
||
# ## Import | ||
|
||
# We start by importing the necessary libraries. We use `GraphNeuralNetworks.jl`, `Flux.jl` and `MLDatasets.jl`, among others. | ||
|
||
using Flux, GraphNeuralNetworks | ||
using Flux.Losses: mae | ||
using MLDatasets: METRLA | ||
using Statistics, Plots | ||
|
||
# ## Dataset: METR-LA | ||
|
||
# We use the `METR-LA` dataset from the paper [Diffusion Convolutional Recurrent Neural Network: Data-driven Traffic Forecasting](https://arxiv.org/pdf/1707.01926.pdf), which contains traffic data from loop detectors in the highway of Los Angeles County. The dataset contains traffic speed data from March 1, 2012 to June 30, 2012. The data is collected every 5 minutes, resulting in 12 observations per hour, from 207 sensors. Each sensor is a node in the graph, and the edges represent the distances between the sensors. | ||
|
||
dataset_metrla = METRLA(; num_timesteps = 3) | ||
# | ||
g = dataset_metrla[1] | ||
|
||
|
||
# `edge_data` contains the weights of the edges of the graph and | ||
# `node_data` contains a node feature vector and a target vector. The latter vectors contain batches of dimension `num_timesteps`, which means that they contain vectors with the node features and targets of `num_timesteps` time steps. Two consecutive batches are shifted by one-time step. | ||
# The node features are the traffic speed of the sensors and the time of the day, and the targets are the traffic speed of the sensors in the next time step. | ||
# Let's see some examples: | ||
|
||
features = map(x -> permutedims(x,(1,3,2)), g.node_data.features) | ||
|
||
size(features[1]) | ||
|
||
# The first dimension correspond to the two features (first line the speed value and the second line the time of the day), the second to the number of timestep `num_timesteps` and the third to the nodes. | ||
|
||
targets = map(x -> permutedims(x,(1,3,2)), g.node_data.targets) | ||
|
||
size(targets[1]) | ||
|
||
# In the case of the targets the first dimension is 1 because they store just the speed value. | ||
|
||
features[1][:,:,1] | ||
|
||
# | ||
features[2][:,:,1] | ||
|
||
# | ||
targets[1][:,:,1] | ||
|
||
# | ||
function plot_data(data,sensor) | ||
p = plot(legend=false, xlabel="Time (h)", ylabel="Normalized speed") | ||
plotdata = [] | ||
for i in 1:3:length(data) | ||
push!(plotdata,data[i][1,:,sensor]) | ||
end | ||
plotdata = reduce(vcat,plotdata) | ||
plot!(p, collect(1:length(data)), plotdata, color = :green, xticks =([i for i in 0:50:250], ["$(i)" for i in 0:4:24])) | ||
return p | ||
end | ||
|
||
plot_data(features[1:288],1) | ||
|
||
# Now let's construct the static graph, the `train_loader` and `data_loader`. | ||
|
||
graph = GNNGraph(g.edge_index; edata = g.edge_data, g.num_nodes); | ||
|
||
train_loader = zip(features[1:200], targets[1:200]); | ||
test_loader = zip(features[2001:2288], targets[2001:2288]); | ||
|
||
# ## Model: T-GCN | ||
|
||
# We use the T-GCN model from the paper [T-GCN: A Temporal Graph Convolutional Network for Traffic Prediction] (https://arxiv.org/pdf/1811.05320.pdf), which consists of a graph convolutional network (GCN) and a gated recurrent unit (GRU). The GCN is used to capture spatial features from the graph, and the GRU is used to capture temporal features from the feature time series. | ||
|
||
model = GNNChain(TGCN(2 => 100; add_self_loops = false), Dense(100, 1)) | ||
|
||
# ![](https://www.researchgate.net/profile/Haifeng-Li-3/publication/335353434/figure/fig4/AS:851870352437249@1580113127759/The-architecture-of-the-Gated-Recurrent-Unit-model.jpg) | ||
|
||
# ## Training | ||
|
||
# We train the model for 100 epochs, using the Adam optimizer with a learning rate of 0.001. We use the mean absolute error (MAE) as the loss function. | ||
|
||
function train(graph, train_loader, model) | ||
|
||
opt = Flux.setup(Adam(0.001), model) | ||
|
||
for epoch in 1:100 | ||
for (x, y) in train_loader | ||
x, y = (x, y) | ||
grads = Flux.gradient(model) do model | ||
ŷ = model(graph, x) | ||
Flux.mae(ŷ, y) | ||
end | ||
Flux.update!(opt, model, grads[1]) | ||
end | ||
|
||
if epoch % 10 == 0 | ||
loss = mean([Flux.mae(model(graph,x), y) for (x, y) in train_loader]) | ||
@show epoch, loss | ||
end | ||
end | ||
return model | ||
end | ||
|
||
train(graph, train_loader, model) | ||
|
||
# | ||
function plot_predicted_data(graph, features, targets, sensor) | ||
p = plot(xlabel="Time (h)", ylabel="Normalized speed") | ||
prediction = [] | ||
grand_truth = [] | ||
for i in 1:3:length(features) | ||
push!(grand_truth,targets[i][1,:,sensor]) | ||
push!(prediction, model(graph, features[i])[1,:,sensor]) | ||
end | ||
prediction = reduce(vcat,prediction) | ||
grand_truth = reduce(vcat, grand_truth) | ||
plot!(p, collect(1:length(features)), grand_truth, color = :blue, label = "Grand Truth", xticks =([i for i in 0:50:250], ["$(i)" for i in 0:4:24])) | ||
plot!(p, collect(1:length(features)), prediction, color = :red, label= "Prediction") | ||
return p | ||
end | ||
|
||
plot_predicted_data(graph,features[301:588],targets[301:588], 1) | ||
|
||
# | ||
accuracy(ŷ, y) = 1 - Statistics.norm(y-ŷ)/Statistics.norm(y) | ||
# Test accuracy: | ||
mean([accuracy(model(graph,x), y) for (x, y) in test_loader]) | ||
|
||
|
||
# The accuracy is not very good but can be improved by training using more data. We used a small subset of the dataset for this tutorial because of the computational cost of training the model. From the plot of the predictions, we can see that the model is able to capture the general trend of the traffic speed, but it is not able to capture the peaks of the traffic. | ||
|
||
# ## Conclusion | ||
|
||
# In this tutorial, we learned how to use a recurrent temporal graph convolutional network to predict traffic in a spatio-temporal setting. We used the TGCN model, which consists of a graph convolutional network (GCN) and a gated recurrent unit (GRU). We then trained the model for 100 epochs on a small subset of the METR-LA dataset. The accuracy of the model is not very good, but it can be improved by training on more data. | ||
|
Oops, something went wrong.