├── .gitignore ├── LICENSE ├── README.md ├── data └── cora │ ├── README │ ├── cora.cites │ └── cora.content ├── layers.py ├── models.py ├── output └── graph_visualize.pdf ├── requirements.txt ├── train.py ├── utils.py └── visualize_graph.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/README.md -------------------------------------------------------------------------------- /data/cora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/data/cora/README -------------------------------------------------------------------------------- /data/cora/cora.cites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/data/cora/cora.cites -------------------------------------------------------------------------------- /data/cora/cora.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/data/cora/cora.content -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/layers.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/models.py -------------------------------------------------------------------------------- /output/graph_visualize.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/output/graph_visualize.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/utils.py -------------------------------------------------------------------------------- /visualize_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Diego999/pyGAT/HEAD/visualize_graph.py --------------------------------------------------------------------------------