csc19960608 / MemGCN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Memory-Augmented GCN (MemGCN)

Overview

This repository contains TensorFlow code for implementing Memory-Augmented Graph Convolutional Network multi-modal data learning in healthcare. The rationale behind the model is that both patient health records and neuroimages are important for disease understanding because of their complementary aspects of diseases.

Memory-base Graph Convolutional Network for brain connectivity graphs with clinical records

In detail, the proposed method MemGCN is a matching network embeds multi-hop memory-augmented graph convolutions and can be trained in an end-to-end fashion with stochastic optimization. The brain connectivity graphs are transformed by graph convolutional networks into representations, while the external memory mechanism is in charge of iteratively (multiple hops) reading clinical sequences and choosing what to retrieve from memories so that the representations learned by graph convolution can be augmented.

Memory-Augmentation

Memory-base Graph Convolutional Network for brain connectivity graphs with clinical records

The key contribution of MemGCN is incorporating sequential records into the representation learning of brain connectivity in terms of memories. By pushing the clinical sequences into the memories, the continuous representations of this external information are processed with brain graphs together so that a more comprehensive diagnosis could be made. The above figure is an illustration of memory augmented graph convolution in a single hop (the 1-st hop).

MemGCN provides a learning strategy for multi-modality data with sequential and graph structure in general scenarios. The code is documented and should be easy to modify for your own applications.

Requirements

This package has the following requirements:

Usage

To run MemGCN on your data, you need to: change the function of loading data in utils.py; set hyperparameters for MemGCN in memgcn.sh; run the shell script memgcn.sh

bash memgcn.sh

References:

@article{zhang2018integrative,
  title={Integrative Analysis of Patient Health Records and Neuroimages via Memory-based Graph Convolutional Network},
  author={Zhang, Xi and Chou, Jingyuan and Wang, Fei},
  journal={arXiv preprint arXiv:1809.06018},
  year={2018}
}

This paper can be accessed on : [Memory-based GCN] (https://arxiv.org/pdf/1809.06018.pdf)

About


Languages

Language:Python 99.3%Language:Shell 0.7%