SlideShare a Scribd company logo
Quang-Huy Tran
Network Science Lab
Dept. of Artificial Intelligence
The Catholic University of Korea
E-mail: huytran1126@gmail.com
2024-06-24
Towards Dynamic Spatial-Temporal Graph
Learning: A Decoupled Perspective
Binwu Wang et al.
AAAI-2024: Proceedings of the Thirty-Eight Conference on Artificial Intelligence
2
OUTLINE
• MOTIVATION
• INTRODUCTION
• METHODOLOGY
• EXPERIMENT & RESULT
• CONCLUSION
3
MOTIVATION
• Spatial-temporal graph prediction has emerged as an essential task in the intelligent
transportation systems.
• The prevailing approaches:
o GCN for spatial correlation and sequence modules for temporal correlation.
Overview
• Most of them are evaluated using short-term dataset and portray the underlying graph
as static and unchanging.
• When considering a longer time frame, the distribution of the graph can undergo
substantial evolution over time - a dynamic spatial-temporal graph:
o the underlying structure of the graph would change over time.
o the distribution feature of the original nodes in the graph would also evolve over time.
4
MOTIVATION
Overview: Previous Approach and Limitation
• Existing works rely on two main approaches:
o the retraining method.
o continuous learning strategies.
• Limitation of these methods.
o assume that there is sufficient data available from the updated graph for at least one month.
o very ideal and oversimplifies the dynamic graph scenario.
5
INTRODUCTION
• reframe the problem of spatial-temporal prediction within the context of data streaming
and tackle this problem using dynamic spatial-temporal graph learning.
• proposed a decoupled learning framework (DLF): a disentangled spatial-temporal graph
network (DSTG) and a decoupled training strategy
o STG decouples temporal correlation into seasonal and trend patterns.
o employ a decoupled training strategy that alternately updates these two patterns, facilitating efficient
and effective dynamic graph learning.
6
METHODOLOGY
Graph Construction and Problem Definition
• A dynamic spatial-temporal graph 𝐺 = (𝐺1, 𝐺2, … , 𝐺𝜏)
o 𝐺𝜏 = {𝑉
𝜏, ℰ𝜏, 𝐴𝜏} represents the graph during the 𝜏-th month.
o 𝑋𝜏 = [𝑋𝜏
𝑡
∈ ℝ𝑁𝜏×𝐹
|𝑡 = 0, … , 𝑇ℎ] is the node feature matrix with feature dimension F of 𝑁𝜏 nodes in
the past 𝑇ℎ time steps.
• Problem: learn a model function ℱ to predict future graph signals
o Strategies for retraining method: requires collected data from 𝐺𝜏 for training to encompass period (𝜏 − 1) months
o Strategies for online learning method: collect half of the month’s data in 𝜏-th month to fine-tune the archive
model with parameters 𝜔
7
METHODOLOGY
Main Architecture
8
METHODOLOGY
Spatial-Temporal Graph Learning (DSTG)
• Input module: input signal is separated into seasonal factors and trend factors
o incorporate time position information into the model.
• Disentangled spatial-temporal module: two GCNs and a disentangled temporal layer.
o GCN: Given the input at 𝑙-th layer 𝐻𝑙 ∈ ℝ𝑁×𝑑𝑙.
o Disentangled temporal module: given a node representation 𝐻 ∈ ℝ𝑇ℎ×𝑑ℎ, decompose into a trend 𝐻𝑡
and a seasonal 𝐻𝑟 by a moving average kernel in the input layer.
 seasonal 𝐻𝑟
is applied self-attention and a position-wise feedforward layer:
 trend 𝐻𝑡 is input into Temporal Convolutional Network to capture short-term patterns.
 Combine both.
• Output module: CNNs is used to generate predictions.
9
METHODOLOGY
Decoupled Training Strategy
• involves updating two patterns in an alternating manner.
• Training for seasonal pattern: utilize three-month data to
thoroughly train the model for seasonal patterns
o masked autoencoder mechanism:
 start with a continuous long-term series as the input.
 divide this input sequence into P patches where P is set to a large
value (shape P: 𝐿 × 𝑁𝜏 × 𝐹 , where 𝐿 is length of the input
sequence).
 create a challenging self-supervised task by randomly masking a
subset of patches with a masking ratio up to 75% - reduce
computational complexity while providing sufficient long-term
information.
10
METHODOLOGY
Decoupled Training Strategy
• Fine-tuning for new knowledge: select a subset of each graph to continuously fine-tune the
weights of trend.
o Detect evolved nodes whose patterns have changed significantly for expanding unseen patterns and
replay nodes whose patterns are consistent for reinforcing learned patterns.
 select the half-month data from training archived model 𝑍𝑟 and current update data 𝑍𝑐.
 sum these two sequences along the time dimension and obtain daily average flow vectors 𝑍𝑟 ∈ ℝ𝑁𝑟×𝐿ℎ×𝐹 and
𝑍𝑐 ∈ ℝ𝑁𝑐×𝐿ℎ×𝐹
, 𝐿ℎ is time-steps of one-day data and 𝑁𝑟 and 𝑁𝑐 represent the number of nodes.
 calculate the similarity between 𝑍𝑟
𝑖 and 𝑍𝑐
𝑖 of node 𝑣𝑖 based on Wasserstein distance.
 sample the top 𝑘% of nodes with high distances, as well as newly added nodes that appear in the archived
data, along with their N-hop neighbors.
11
EXPERIMENT AND RESULT
EXPERIMENT SETTINGs
• Dataset:
o Traffic dataset PeMS in California.
• Baselines:
o Retraining learning: TCN, STGCN[1], STNN[2], ST-GAM[3], and DSTG+AD (DSTG with all available data).
o Continuous learning: DSTG+SK(STKEC)[4], DSTG+TS(Traffic Stream)[5], and DSTG+NN(new nodes with N-
hop neighbors to fine-tune all parameters.
o Online learning: DSTG-Static(no fine-tuning).
[1] Yu, B., Yin, H., & Zhu, Z. (2017). Spatio-temporal graph convolutional networks: A deep learning framework for traffic forecasting. arXiv preprint arXiv:1709.04875.
[2] Yang, S., Liu, J., & Zhao, K. (2021, December). Space meets time: Local spacetime neural network for traffic flow forecasting. In 2021 IEEE International Conference on Data Mining (ICDM) (pp. 817-826). IEEE.
[3] Wang, P., Zhu, C., Wang, X., Zhou, Z., Wang, G., & Wang, Y. (2022). Inferring intersection traffic patterns with sparse video surveillance information: An st-gan method. IEEE Transactions on Vehicular Technology, 71(9), 9840-9852.
[4] Wang, B., Zhang, Y., Wang, P., Wang, X., Bai, L., & Wang, Y. (2023, April). A Knowledge-Driven Memory System for Traffic Flow Prediction. In International Conference on Database Systems for Advanced Applications (pp. 192-207). Cham: Springer Nature Switzerland.
[5] Chen, X., Wang, J., & Xie, K. (2021). TrafficStream: A streaming traffic flow forecasting framework based on graph neural networks and continual learning. arXiv preprint arXiv:2106.06273.
• Measurement:
o Mean Absolute Error(MAE), Mean Absolute Percentage Error (MAPE), and Root Mean Square Error
(RMSE).
12
EXPERIMENT AND RESULT
RESULT – Overall Performance
13
EXPERIMENT AND RESULT
Result: Generalization of Models
• Evaluate it on the Knowair dataset (different domain):
o the air pollution feature PM2.5 and 18 meteorological features.
14
CONCLUSION
• proposing a decoupled learning framework on spatial-temporal graph prediction with
a dynamic scenario.
o a disentangled spatial-temporal graph convolutional network (DSTG) and a decoupled training
strategy.
o DSTG decomposes temporal correlations into seasonal and trend patterns.
o The training strategy updates these patterns alternately to facilitate dynamic spatial-temporal
graph learning.
[20240624_LabSeminar_Huy]Towards Dynamic Spatial-Temporal Graph Learning: A Decoupled Perspective​.pptx
[20240624_LabSeminar_Huy]Towards Dynamic Spatial-Temporal Graph Learning: A Decoupled Perspective​.pptx

More Related Content

PPTX
[20240628_LabSeminar_Huy]ScalableSTGNN.pptx
PPTX
[20240703_LabSeminar_Huy]MakeGNNGreatAgain.pptx
PPTX
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
PPTX
[20240617_LabSeminar_Huy]Long-term Spatio-Temporal Forecasting via Dynamic Mu...
PPTX
[20240819_LabSeminar_Huy]Learning Decomposed Spatial Relations for Multi-Vari...
PPTX
[20240429_LabSeminar_Huy]Spatio-Temporal Graph Neural Point Process for Traff...
PPTX
[20240923_LabSeminar_Huy]MSGNet: Learning Multi-Scale Inter-Series Correlatio...
PPTX
[20240520_LabSeminar_Huy]DSTAGNN: Dynamic Spatial-Temporal Aware Graph Neural...
[20240628_LabSeminar_Huy]ScalableSTGNN.pptx
[20240703_LabSeminar_Huy]MakeGNNGreatAgain.pptx
[20240513_LabSeminar_Huy]GraphFewShort_Transfer.pptx
[20240617_LabSeminar_Huy]Long-term Spatio-Temporal Forecasting via Dynamic Mu...
[20240819_LabSeminar_Huy]Learning Decomposed Spatial Relations for Multi-Vari...
[20240429_LabSeminar_Huy]Spatio-Temporal Graph Neural Point Process for Traff...
[20240923_LabSeminar_Huy]MSGNet: Learning Multi-Scale Inter-Series Correlatio...
[20240520_LabSeminar_Huy]DSTAGNN: Dynamic Spatial-Temporal Aware Graph Neural...

Similar to [20240624_LabSeminar_Huy]Towards Dynamic Spatial-Temporal Graph Learning: A Decoupled Perspective​.pptx (20)

PPTX
[20240325_LabSeminar_Huy]Spatial-Temporal Fusion Graph Neural Networks for Tr...
PPTX
[20240710_LabSeminar_Huy]PDFormer: Propagation Delay-Aware Dynamic Long-Range...
PPTX
[20240422_LabSeminar_Huy]Taming_Effect.pptx
PPTX
[20240408_LabSeminar_Huy]PivotalSTGNN.pptx
PPTX
[20240805_LabSeminar_Huy]GPT-ST: Generative Pre-Training of Spatio-Temporal G...
PPTX
[20240712_LabSeminar_Huy]Spatio-Temporal Neural Structural Causal Models for ...
PPTX
[20240318_LabSeminar_Huy]GSTNet: Global Spatial-Temporal Network for Traffic ...
PPTX
[20240415_LabSeminar_Huy]Deciphering Spatio-Temporal Graph Forecasting: A Cau...
PPTX
[20240930_LabSeminar_Huy]GinAR: An End-To-End Multivariate Time Series Foreca...
PPTX
[20240729_LabSeminar_Huy]Spatio-Temporal Self-Supervised Learning for Traffic...
PPTX
PDF
PPTX
[20240614_LabSeminar_Huy]GRLSTM: Trajectory Similarity Computation with Graph...
PPTX
Semantic Segmentation on Satellite Imagery
PDF
System for Prediction of Non Stationary Time Series based on the Wavelet Radi...
PPTX
[20240621_LabSeminar_Huy]Spatial-Temporal Interplay in Human Mobility: A Hier...
PPTX
[20240527_LabSeminar_Huy]Meta-Graph.pptx
PDF
ME Synopsis
PPTX
[20240722_LabSeminar_Huy]WaveForM: Graph Enhanced Wavelet Learning for Long S...
PPTX
[Seminar] hyunwook 0624
[20240325_LabSeminar_Huy]Spatial-Temporal Fusion Graph Neural Networks for Tr...
[20240710_LabSeminar_Huy]PDFormer: Propagation Delay-Aware Dynamic Long-Range...
[20240422_LabSeminar_Huy]Taming_Effect.pptx
[20240408_LabSeminar_Huy]PivotalSTGNN.pptx
[20240805_LabSeminar_Huy]GPT-ST: Generative Pre-Training of Spatio-Temporal G...
[20240712_LabSeminar_Huy]Spatio-Temporal Neural Structural Causal Models for ...
[20240318_LabSeminar_Huy]GSTNet: Global Spatial-Temporal Network for Traffic ...
[20240415_LabSeminar_Huy]Deciphering Spatio-Temporal Graph Forecasting: A Cau...
[20240930_LabSeminar_Huy]GinAR: An End-To-End Multivariate Time Series Foreca...
[20240729_LabSeminar_Huy]Spatio-Temporal Self-Supervised Learning for Traffic...
[20240614_LabSeminar_Huy]GRLSTM: Trajectory Similarity Computation with Graph...
Semantic Segmentation on Satellite Imagery
System for Prediction of Non Stationary Time Series based on the Wavelet Radi...
[20240621_LabSeminar_Huy]Spatial-Temporal Interplay in Human Mobility: A Hier...
[20240527_LabSeminar_Huy]Meta-Graph.pptx
ME Synopsis
[20240722_LabSeminar_Huy]WaveForM: Graph Enhanced Wavelet Learning for Long S...
[Seminar] hyunwook 0624
Ad

More from thanhdowork (20)

PPTX
250818_Thuy_Labseminar[TopoGCL: Topological Graph Contrastive Learning].pptx
PPTX
[NS][Lab_Seminar_250811]Imagine and Seek: Improving Composed Image Retrieval ...
PPTX
250811_HW_LabSeminar[Self-Supervised Graph Information Bottleneck for Multivi...
PPTX
250811_Thien_Labseminar[Cluster-GCN].pptx
PPTX
250811_Thuy_Labseminar[BioBRIDGE: BRIDGING BIOMEDICAL FOUNDATION MODELS VIA K...
PPTX
[NS][Lab_Seminar_250728]On the Trade-off between Over-smoothing and Over-squa...
PPTX
250804_HW_LabSeminar[Discrete Curvature Graph Information Bottleneck].pptx
PPTX
250728_Thuy_Labseminar[Knowledge Enhanced Representation Learning for Drug Di...
PPTX
250728_Thuy_Labseminar[Predictive Chemistry Augmented with Text Retrieval].pptx
PPTX
[NS][Lab_Seminar_250728]NeuralWalker.pptx
PPTX
A Novel Shape-Aware Topological Representation for GPR Data with DNN Integrat...
PPTX
250721_Thien_Labseminar[Variational Graph Auto-Encoders].pptx
PPTX
250721_HW_LabSeminar[RingFormer: A Ring-Enhanced Graph Transformer for Organi...
PPTX
250721_Thuy_Labseminar[Thought Propagation: An Analogical Approach to Complex...
PPTX
[NS][Lab_Seminar_250721]On Measuring Long-Range Interactions in Graph Neural ...
PPTX
250714_HW_LabSeminar[Structural Reasoning Improves Molecular Understanding of...
PPTX
[NS][Lab_Seminar_250714]Candidate Set Re-ranking for Composed Image Retrieval...
PPTX
250714_Thuy_Labseminar[BioT5: Enriching Cross-modal Integration in Biology wi...
PPTX
250707_HW_LabSeminar[CHEMICAL-REACTION-AWARE MOLECULE REPRESENTATION LEARNING...
PPTX
[NS][Lab_Seminar_250707]Learning with Noisy Triplet Correspondence for Compos...
250818_Thuy_Labseminar[TopoGCL: Topological Graph Contrastive Learning].pptx
[NS][Lab_Seminar_250811]Imagine and Seek: Improving Composed Image Retrieval ...
250811_HW_LabSeminar[Self-Supervised Graph Information Bottleneck for Multivi...
250811_Thien_Labseminar[Cluster-GCN].pptx
250811_Thuy_Labseminar[BioBRIDGE: BRIDGING BIOMEDICAL FOUNDATION MODELS VIA K...
[NS][Lab_Seminar_250728]On the Trade-off between Over-smoothing and Over-squa...
250804_HW_LabSeminar[Discrete Curvature Graph Information Bottleneck].pptx
250728_Thuy_Labseminar[Knowledge Enhanced Representation Learning for Drug Di...
250728_Thuy_Labseminar[Predictive Chemistry Augmented with Text Retrieval].pptx
[NS][Lab_Seminar_250728]NeuralWalker.pptx
A Novel Shape-Aware Topological Representation for GPR Data with DNN Integrat...
250721_Thien_Labseminar[Variational Graph Auto-Encoders].pptx
250721_HW_LabSeminar[RingFormer: A Ring-Enhanced Graph Transformer for Organi...
250721_Thuy_Labseminar[Thought Propagation: An Analogical Approach to Complex...
[NS][Lab_Seminar_250721]On Measuring Long-Range Interactions in Graph Neural ...
250714_HW_LabSeminar[Structural Reasoning Improves Molecular Understanding of...
[NS][Lab_Seminar_250714]Candidate Set Re-ranking for Composed Image Retrieval...
250714_Thuy_Labseminar[BioT5: Enriching Cross-modal Integration in Biology wi...
250707_HW_LabSeminar[CHEMICAL-REACTION-AWARE MOLECULE REPRESENTATION LEARNING...
[NS][Lab_Seminar_250707]Learning with Noisy Triplet Correspondence for Compos...
Ad

Recently uploaded (20)

PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
HVAC Specification 2024 according to central public works department
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
Hazard Identification & Risk Assessment .pdf
PDF
International_Financial_Reporting_Standa.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PDF
My India Quiz Book_20210205121199924.pdf
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PPTX
Introduction to pro and eukaryotes and differences.pptx
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Share_Module_2_Power_conflict_and_negotiation.pptx
AI-driven educational solutions for real-life interventions in the Philippine...
Chinmaya Tiranga quiz Grand Finale.pdf
HVAC Specification 2024 according to central public works department
Unit 4 Computer Architecture Multicore Processor.pptx
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
FORM 1 BIOLOGY MIND MAPS and their schemes
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
History, Philosophy and sociology of education (1).pptx
Hazard Identification & Risk Assessment .pdf
International_Financial_Reporting_Standa.pdf
Virtual and Augmented Reality in Current Scenario
LDMMIA Reiki Yoga Finals Review Spring Summer
Environmental Education MCQ BD2EE - Share Source.pdf
My India Quiz Book_20210205121199924.pdf
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
Introduction to pro and eukaryotes and differences.pptx
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf

[20240624_LabSeminar_Huy]Towards Dynamic Spatial-Temporal Graph Learning: A Decoupled Perspective​.pptx

  • 1. Quang-Huy Tran Network Science Lab Dept. of Artificial Intelligence The Catholic University of Korea E-mail: huytran1126@gmail.com 2024-06-24 Towards Dynamic Spatial-Temporal Graph Learning: A Decoupled Perspective Binwu Wang et al. AAAI-2024: Proceedings of the Thirty-Eight Conference on Artificial Intelligence
  • 2. 2 OUTLINE • MOTIVATION • INTRODUCTION • METHODOLOGY • EXPERIMENT & RESULT • CONCLUSION
  • 3. 3 MOTIVATION • Spatial-temporal graph prediction has emerged as an essential task in the intelligent transportation systems. • The prevailing approaches: o GCN for spatial correlation and sequence modules for temporal correlation. Overview • Most of them are evaluated using short-term dataset and portray the underlying graph as static and unchanging. • When considering a longer time frame, the distribution of the graph can undergo substantial evolution over time - a dynamic spatial-temporal graph: o the underlying structure of the graph would change over time. o the distribution feature of the original nodes in the graph would also evolve over time.
  • 4. 4 MOTIVATION Overview: Previous Approach and Limitation • Existing works rely on two main approaches: o the retraining method. o continuous learning strategies. • Limitation of these methods. o assume that there is sufficient data available from the updated graph for at least one month. o very ideal and oversimplifies the dynamic graph scenario.
  • 5. 5 INTRODUCTION • reframe the problem of spatial-temporal prediction within the context of data streaming and tackle this problem using dynamic spatial-temporal graph learning. • proposed a decoupled learning framework (DLF): a disentangled spatial-temporal graph network (DSTG) and a decoupled training strategy o STG decouples temporal correlation into seasonal and trend patterns. o employ a decoupled training strategy that alternately updates these two patterns, facilitating efficient and effective dynamic graph learning.
  • 6. 6 METHODOLOGY Graph Construction and Problem Definition • A dynamic spatial-temporal graph 𝐺 = (𝐺1, 𝐺2, … , 𝐺𝜏) o 𝐺𝜏 = {𝑉 𝜏, ℰ𝜏, 𝐴𝜏} represents the graph during the 𝜏-th month. o 𝑋𝜏 = [𝑋𝜏 𝑡 ∈ ℝ𝑁𝜏×𝐹 |𝑡 = 0, … , 𝑇ℎ] is the node feature matrix with feature dimension F of 𝑁𝜏 nodes in the past 𝑇ℎ time steps. • Problem: learn a model function ℱ to predict future graph signals o Strategies for retraining method: requires collected data from 𝐺𝜏 for training to encompass period (𝜏 − 1) months o Strategies for online learning method: collect half of the month’s data in 𝜏-th month to fine-tune the archive model with parameters 𝜔
  • 8. 8 METHODOLOGY Spatial-Temporal Graph Learning (DSTG) • Input module: input signal is separated into seasonal factors and trend factors o incorporate time position information into the model. • Disentangled spatial-temporal module: two GCNs and a disentangled temporal layer. o GCN: Given the input at 𝑙-th layer 𝐻𝑙 ∈ ℝ𝑁×𝑑𝑙. o Disentangled temporal module: given a node representation 𝐻 ∈ ℝ𝑇ℎ×𝑑ℎ, decompose into a trend 𝐻𝑡 and a seasonal 𝐻𝑟 by a moving average kernel in the input layer.  seasonal 𝐻𝑟 is applied self-attention and a position-wise feedforward layer:  trend 𝐻𝑡 is input into Temporal Convolutional Network to capture short-term patterns.  Combine both. • Output module: CNNs is used to generate predictions.
  • 9. 9 METHODOLOGY Decoupled Training Strategy • involves updating two patterns in an alternating manner. • Training for seasonal pattern: utilize three-month data to thoroughly train the model for seasonal patterns o masked autoencoder mechanism:  start with a continuous long-term series as the input.  divide this input sequence into P patches where P is set to a large value (shape P: 𝐿 × 𝑁𝜏 × 𝐹 , where 𝐿 is length of the input sequence).  create a challenging self-supervised task by randomly masking a subset of patches with a masking ratio up to 75% - reduce computational complexity while providing sufficient long-term information.
  • 10. 10 METHODOLOGY Decoupled Training Strategy • Fine-tuning for new knowledge: select a subset of each graph to continuously fine-tune the weights of trend. o Detect evolved nodes whose patterns have changed significantly for expanding unseen patterns and replay nodes whose patterns are consistent for reinforcing learned patterns.  select the half-month data from training archived model 𝑍𝑟 and current update data 𝑍𝑐.  sum these two sequences along the time dimension and obtain daily average flow vectors 𝑍𝑟 ∈ ℝ𝑁𝑟×𝐿ℎ×𝐹 and 𝑍𝑐 ∈ ℝ𝑁𝑐×𝐿ℎ×𝐹 , 𝐿ℎ is time-steps of one-day data and 𝑁𝑟 and 𝑁𝑐 represent the number of nodes.  calculate the similarity between 𝑍𝑟 𝑖 and 𝑍𝑐 𝑖 of node 𝑣𝑖 based on Wasserstein distance.  sample the top 𝑘% of nodes with high distances, as well as newly added nodes that appear in the archived data, along with their N-hop neighbors.
  • 11. 11 EXPERIMENT AND RESULT EXPERIMENT SETTINGs • Dataset: o Traffic dataset PeMS in California. • Baselines: o Retraining learning: TCN, STGCN[1], STNN[2], ST-GAM[3], and DSTG+AD (DSTG with all available data). o Continuous learning: DSTG+SK(STKEC)[4], DSTG+TS(Traffic Stream)[5], and DSTG+NN(new nodes with N- hop neighbors to fine-tune all parameters. o Online learning: DSTG-Static(no fine-tuning). [1] Yu, B., Yin, H., & Zhu, Z. (2017). Spatio-temporal graph convolutional networks: A deep learning framework for traffic forecasting. arXiv preprint arXiv:1709.04875. [2] Yang, S., Liu, J., & Zhao, K. (2021, December). Space meets time: Local spacetime neural network for traffic flow forecasting. In 2021 IEEE International Conference on Data Mining (ICDM) (pp. 817-826). IEEE. [3] Wang, P., Zhu, C., Wang, X., Zhou, Z., Wang, G., & Wang, Y. (2022). Inferring intersection traffic patterns with sparse video surveillance information: An st-gan method. IEEE Transactions on Vehicular Technology, 71(9), 9840-9852. [4] Wang, B., Zhang, Y., Wang, P., Wang, X., Bai, L., & Wang, Y. (2023, April). A Knowledge-Driven Memory System for Traffic Flow Prediction. In International Conference on Database Systems for Advanced Applications (pp. 192-207). Cham: Springer Nature Switzerland. [5] Chen, X., Wang, J., & Xie, K. (2021). TrafficStream: A streaming traffic flow forecasting framework based on graph neural networks and continual learning. arXiv preprint arXiv:2106.06273. • Measurement: o Mean Absolute Error(MAE), Mean Absolute Percentage Error (MAPE), and Root Mean Square Error (RMSE).
  • 12. 12 EXPERIMENT AND RESULT RESULT – Overall Performance
  • 13. 13 EXPERIMENT AND RESULT Result: Generalization of Models • Evaluate it on the Knowair dataset (different domain): o the air pollution feature PM2.5 and 18 meteorological features.
  • 14. 14 CONCLUSION • proposing a decoupled learning framework on spatial-temporal graph prediction with a dynamic scenario. o a disentangled spatial-temporal graph convolutional network (DSTG) and a decoupled training strategy. o DSTG decomposes temporal correlations into seasonal and trend patterns. o The training strategy updates these patterns alternately to facilitate dynamic spatial-temporal graph learning.