Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GNNFlux] Translate Traffic prediction Pluto notebook to Literate #572

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions GraphNeuralNetworks/docs/make_tutorials_literate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ Literate.markdown("src_tutorials/introductory_tutorials/graph_classification.jl"

Literate.markdown("src_tutorials/introductory_tutorials/temporal_graph_classification.jl",
"src/tutorials/"; execute = true)

Literate.markdown("src_tutorials/introductory_tutorials/traffic_prediction.jl", "src/tutorials/"; execute = true)
421 changes: 266 additions & 155 deletions GraphNeuralNetworks/docs/src/tutorials/traffic_prediction.md

Large diffs are not rendered by default.

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does it mean the edges represent the distances between the sensors? should be clarified


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]);
Comment on lines +66 to +67
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

motivate this choice of ranges


# ## 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)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here it would be useful to show the output of the model and how it is interpreted as a prediction

# ## 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
Comment on lines +85 to +99
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

identation

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.

Loading
Loading