graph-learning
Here are 13 public repositories matching this topic...
Training neural models with structured signals.
-
Updated
Jan 30, 2020 - Python
A Tensorflow implementation of "Bayesian Graph Convolutional Neural Networks" (AAAI 2019).
-
Updated
Jan 26, 2020 - Python
Unsupervised Universal Self-Attention Network for Graph Classification
-
Updated
Jan 29, 2020 - Python
There is some kind of thread-race condition described at lines 550-575 of link-pipeline.scm -- its talking about problems that arise when the same sentence is fed through the system in rapid succession. Apparently, the code is trying to remove Atoms to reduce clutter, but is sloppy in doing so. There is no reason to be sloppy; this should be fixed. The best way for doing this might be to use `(
Code accompanying the paper "Iterative Deep Graph Learning for Graph Neural Networks"
-
Updated
Jan 30, 2020
MATLAB code for the ICDM paper "Consistency Meets Inconsistency: A Unified Graph Learning Framework for Multi-view Clustering"
-
Updated
Dec 27, 2019 - MATLAB
Pytorch Implementation of GNN Meta Attack paper.
-
Updated
Jan 24, 2020 - Python
Baseline collective classification library
-
Updated
Sep 7, 2019 - Julia
Graph construction from data using Non Negative Kernel Regression
-
Updated
Jan 24, 2020 - MATLAB
This repository contains implementation of Covariant Compositional Networks in Tensorflow 2 for replication study of the paper that introduced them originally.
-
Updated
Jan 30, 2020 - Python
Learn instance weight by reliability propagation on an adaptive graph
-
Updated
Jan 15, 2018 - Scala
Improve this page
Add a description, image, and links to the graph-learning topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the graph-learning 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