|
| 1 | +Neural structured learning methods such as Neural Graph Machines [1], Graph |
| 2 | +Convolutional Networks [2] and their variants have successfully combined the |
| 3 | +expressiveness of neural networks with graph structures to improve on learning |
| 4 | +tasks. Graph Agreement Models is a technique that can be applied to these |
| 5 | +methods to handle the noisy nature of real world graphs. Traditional graph-based |
| 6 | +algorithms, such as label propagation, were designed with the underlying |
| 7 | +assumption that the label of a node can be imputed from that of the neighboring |
| 8 | +nodes and edge weights. However, most real world graphs are either noisy or have |
| 9 | +edges that do not correspond to label agreement uniformly across the graph. |
| 10 | +Graph Agreement Models(GAM) introduce an auxiliary model that predicts the |
| 11 | +probability of two nodes sharing the same label as a learned function of their |
| 12 | +features. This agreement model is then used when training a node classification |
| 13 | +model by encouraging agreement only for those pairs of nodes that it deems |
| 14 | +likely to have the same label, thus guiding its parameters to better local |
| 15 | +optima. The classification and agreement models are trained jointly in a |
| 16 | +co-training fashion. |
| 17 | + |
| 18 | +This code repository contains an implementation of Graph Agreement Models. The |
| 19 | +code is organized into the following folders: |
| 20 | + |
| 21 | +* data: Classes and methods for accessing semi-supervised learning datasets. |
| 22 | +* models: Classes and methods for classification models and graph agreement |
| 23 | + models. |
| 24 | +* trainer: Classes and methods for training the classification models, and |
| 25 | + agreement models individually as well as in a co-traioning fashion. |
| 26 | +* experiments: Python run script for training Graph Agreement Models on MNIST |
| 27 | + and other datasets. |
| 28 | + |
| 29 | +The implementations of Graph Agreement Models (GAMs) are provided in the `gam` |
| 30 | +folder on a strict "as is" basis, without warranties or conditions of any kind. |
| 31 | +Also, these implementations may not be compatible with certain TensorFlow |
| 32 | +versions (such as 2.0 or above) or Python versions. |
| 33 | + |
| 34 | +## Reference |
| 35 | + |
| 36 | +[[1] T. Bui, S. Ravi and V. Ramavajjala. "Neural Graph Learning: Training Neural Networks Using Graphs." WSDM 2018](https://ai.google/research/pubs/pub46568.pdf) |
| 37 | + |
| 38 | + |
| 39 | +[[2] T. Kipf and M. Welling. "Semi-supervised classification with graph convolutional networks." ICLR 2017](https://arxiv.org/pdf/1609.02907.pdf) |
0 commit comments