Views
No views yet
1from utils.mtgnn import load_from_hub
2
3# Load model from Hub
4model = load_from_hub("METR-LA")
5
6# Get predictions
7import numpy as np
8x = np.random.randn(10, 2, 207, 12) # (batch, features, nodes, seq_len)
9predictions = model.predict(x)1@inproceedings{wu2020connecting,
2 title={Connecting the Dots: Multivariate Time Series Forecasting with Graph Neural Networks},
3 author={Wu, Zonghan and Pan, Shirui and Long, Guodong and Jiang, Jing and Chang, Xiaojun and Zhang, Chengqi},
4 booktitle={Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining},
5 pages={753--763},
6 year={2020}
7}