Views
No views yet
1from dcrnn_pytorch.model.pytorch.dcrnn_supervisor import DCRNNSupervisor
2from utils.dcrnn import load_from_hub
3
4# Download checkpoint
5checkpoint_path = load_from_hub("your-username/dcrnn-metr-la")
6
7# Load model (requires config and adj_mx from checkpoint)
8# See documentation for full loading example@inproceedings{li2018dcrnn,
title={Diffusion Convolutional Recurrent Neural Network: Data-Driven Traffic Forecasting},
author={Li, Yaguang and Yu, Rose and Shahabi, Cyrus and Liu, Yan},
booktitle={International Conference on Learning Representations (ICLR)},
year={2018}
}