GitHub - Knowledge-Precipitation-Tribe/STGCN-keras: …
28.07.2020 · STGCN-keras. This is a Keras implementation of Spatio-Temporal Graph Convolutional Networks(STGCN) model from the paper "Spatio-Temporal Graph Convolutional Networks: A Deep Learning Framework for Traffic …
keras-gcn - PyPI
https://pypi.org/project/keras-gcn22.01.2022 · Keras Graph Convolutional Network. Graph convolutional layers. Install pip install keras-gcn Usage GraphConv. from tensorflow import keras from keras_gcn import GraphConv DATA_DIM = 3 data_layer = keras. layers. Input (shape = (None, DATA_DIM)) edge_layer = keras. layers. Input (shape = (None, None)) conv_layer = GraphConv (units = 32, step_num = …
Spektral
https://graphneural.networkSpektral: Graph Neural Networks in TensorFlow 2 and Keras. ... Graph Convolutional Networks (GCN) · Chebyshev convolutions · GraphSAGE · ARMA convolutions ...
keras-gcn - PyPI
pypi.org › project › keras-gcnJan 22, 2022 · Install pip install keras-gcn Usage GraphConv from tensorflow import keras from keras_gcn import GraphConv DATA_DIM = 3 data_layer = keras.layers.Input(shape=(None, DATA_DIM)) edge_layer = keras.layers.Input(shape=(None, None)) conv_layer = GraphConv( units=32, step_num=1, ) ( [data_layer, edge_layer])