#
ggnn
Here are 8 public repositories matching this topic...
PyTorch implementation for Graph Gated Neural Network (for Knowledge Graphs)
-
Updated
Jan 23, 2020 - Python
natalymr
commented
Apr 27, 2019
It seems that
Train and test the GGNN:
python3 main_ggnn.py python3 test_ggnn.py
should be replaced with this
Train and test the GGNN:
python3 train_ggnn.py python3 test_ggnn.py
Visual Studio Code extension for fAST
-
Updated
Oct 6, 2019 - TypeScript
Reimplement gated graph neural network in NNabla
-
Updated
May 1, 2018 - Python
Improve this page
Add a description, image, and links to the ggnn topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ggnn topic, visit your repo's landing page and select "manage topics."
base_layers.py中:embedding 的call
def call(self, inputs):
shape = inputs.shape
inputs = tf.reshape(inputs,[-1])
output_shape = shape.concatenate(self.dim)
output_shape = [d if d is not None else -1 for d in output_shape.as_list()] #//tensorshape->[,,] list
return tf.reshape(tf.nn.embedding_lookup(self.embeddings, inputs),output_shape)
**GraphSage-ShallowEncoder e