Downloads · 30 days
6
17% of all-time downloads
witgaw/GWNET_PEMS-BAY
GWNET_PEMS-BAY is a machine learning model from witgaw. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
Graph WaveNet for traffic speed forecasting, combining graph convolution with dilated causal convolution.
Downloads · 30 days
6
17% of all-time downloads
All-time downloads
36
Public
Parameters
312K
1.3 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors1.3 MB · 100%
From the Hugging Face model README
Graph WaveNet for traffic speed forecasting, combining graph convolution with dilated causal convolution.
This model uses a graph neural network architecture that combines:
PEMS-BAY: Traffic speed data from highway sensors.
from utils.gwnet import load_from_hub
# Load model from Hub
model = load_from_hub("PEMS-BAY")
# Get predictions
import numpy as np
x = np.random.randn(10, 12, 207, 2) # (batch, seq_len, nodes, features)
predictions = model.predict(x)
Model was trained using the Graph-WaveNet implementation with default hyperparameters.
If you use this model, please cite the original Graph WaveNet paper:
@inproceedings{wu2019graph,
title={Graph WaveNet for Deep Spatial-Temporal Graph Modeling},
author={Wu, Zonghan and Pan, Shirui and Long, Guodong and Jiang, Jing and Zhang, Chengqi},
booktitle={Proceedings of the 28th International Joint Conference on Artificial Intelligence},
pages={1907--1913},
year={2019}
}
This model checkpoint is released under the same license as the training code.