Learning Convolutional Neural Networks for Graphs

Literuture Review

Posted by Yanghao ZHANG on April 18, 2019

https://arxiv.org/abs/1605.05273

Introduction

This paper is proposed by Niepert, Mathias, Mohamed Ahmed, and Konstantin Kutzkov in 2016 on ICML.

This blog will review the paper and reproduce some experiments. [code]

It proposed a framework for learning convolution neural network for arbitrary graphs, which can be directed, undirected and with both discrete and continuous node and edge attributes.

Analogous to image-based CNNs which operate on locally connected regions of the input, this paper proposed a approah to extract locally connected resion from graphs.

problem

  • nodes for any two graphs are not necessarily in correspondence.
  • how to learn graph representations to infer unseen graph properties (node types / missing edges)

Convolutional on Graph

** This can be seen as traversing in a node sequence and generating fixed-size neighborhood graph.**

CNN-Graph

To sovle two prolems by PATCHY-SAN

  • Determining the node sequences for which neighborhood graphs are created. (by hyperparameter)

  • Computing a normalization of neighborhood graphsa unique map- ping from a graph representation into a vector space representation.

Process:

  1. Determine nodes and order;
  2. Create neighborhood graphs;
  3. Extract and normalize the neighborhood, which serves as the receptive field for a node under consideration.

Advantages:

  1. high efficient, naively paralleizable and applicable to large graphs;
  2. support feature visualizations;
  3. can learning application dependent features without feature engineering.

Proposed Method

The architecture of this algorithm can be seen: CNN-Graph Architecture

Node Sequence Selection

Select a fixed-length sequence of nodes from the graph

Graph Labeling, $e.g.$ betweeness centrality, Weisfeiler-Lehman, to get a structured sequence like imposing an order on the nodes of graph or Rank.

Procedure:

  1. Sorted by graph labeling;
  2. Traverse the node sequence to construct receptive fields for each input channel.

Neighborhood Assembly

Assemble a fixed-size neighborhood for each node in the selected sequence

  • Given as inputs a node $v$ and the size of the receptive field $k$
  • Performs a breadth-first search to expore vertices with an increase distance from $v$
  • add these vertices to a set $N$, $i.e.$ neighborhood.
  • (make sure at least $k$ vertives are in $N$, or no more neighbors to add)

Graph Normalization

Normalize the extracted neighborhood graph

The receptive field for a node is constructed by normalizing the neighborhood assembled in the previous step.

The normalization imposes an order on the nodes of the neighborhood graph so as to map from the unordered graph space to a vector space with a linear order. CNN-Graph Normalization

Convolutional Architecture

Learn neighborhood representations with convolutional neural networks from the resulting sequence of patches.

Reference

[1] Niepert, M., Ahmed, M. and Kutzkov, K., 2016, June. Learning convolutional neural networks for graphs. In International conference on machine learning (pp. 2014-2023).