Skip to content

shagunsodhani/pregel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pregel

Tensorflow implementation of Graph Convolutional Network

Setup

  • sudo pip3 install -r requirements.txt

Run

  • python3 main.py -h to view all the config parameters. Update the default parameters in the main.py file.
  • python3 main.py to run the models.
  • tensorboard --logdir=run1:<tensorboard-dir> -port 6006 to run tensorboard and go to http://localhost/6006

References

This work is an attempt to reproduce some of the works related to graph convolutional networks:

@article{kipf2016semi,
  title={Semi-Supervised Classification with Graph Convolutional Networks},
  author={Kipf, Thomas N and Welling, Max},
  journal={arXiv preprint arXiv:1609.02907},
  year={2016}
}
@article{hamilton2017representation,
  title={Representation Learning on Graphs: Methods and Applications},
  author={Hamilton, William L and Ying, Rex and Leskovec, Jure},
  journal={arXiv preprint arXiv:1709.05584},
  year={2017}
}