├── .gitignore ├── LICENSE ├── README.md ├── cora.py ├── gat_pyg.py ├── gcn.py ├── gcn_pyg.py ├── meta.py ├── ppi.py └── sage_pyg.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/README.md -------------------------------------------------------------------------------- /cora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/cora.py -------------------------------------------------------------------------------- /gat_pyg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/gat_pyg.py -------------------------------------------------------------------------------- /gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/gcn.py -------------------------------------------------------------------------------- /gcn_pyg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/gcn_pyg.py -------------------------------------------------------------------------------- /meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/meta.py -------------------------------------------------------------------------------- /ppi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/ppi.py -------------------------------------------------------------------------------- /sage_pyg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuowang-ai/graph-neural-network-pyg/HEAD/sage_pyg.py --------------------------------------------------------------------------------