├── README.md ├── data ├── GoogleNw.txt ├── citeseer.cites └── cora.cites ├── graph_visu_cora.png ├── gravity_gae ├── __init__.py ├── evaluation.py ├── initializations.py ├── input_data.py ├── layers.py ├── model.py ├── optimizer.py ├── preprocessing.py └── train.py └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/README.md -------------------------------------------------------------------------------- /data/GoogleNw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/data/GoogleNw.txt -------------------------------------------------------------------------------- /data/citeseer.cites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/data/citeseer.cites -------------------------------------------------------------------------------- /data/cora.cites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/data/cora.cites -------------------------------------------------------------------------------- /graph_visu_cora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/graph_visu_cora.png -------------------------------------------------------------------------------- /gravity_gae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/__init__.py -------------------------------------------------------------------------------- /gravity_gae/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/evaluation.py -------------------------------------------------------------------------------- /gravity_gae/initializations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/initializations.py -------------------------------------------------------------------------------- /gravity_gae/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/input_data.py -------------------------------------------------------------------------------- /gravity_gae/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/layers.py -------------------------------------------------------------------------------- /gravity_gae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/model.py -------------------------------------------------------------------------------- /gravity_gae/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/optimizer.py -------------------------------------------------------------------------------- /gravity_gae/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/preprocessing.py -------------------------------------------------------------------------------- /gravity_gae/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/gravity_gae/train.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/gravity_graph_autoencoders/HEAD/setup.py --------------------------------------------------------------------------------