├── README.md ├── data └── cora │ ├── README │ ├── cora.cites │ └── cora.content └── pygcn ├── __init__.py ├── layers.py ├── models.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /data/cora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/data/cora/README -------------------------------------------------------------------------------- /data/cora/cora.cites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/data/cora/cora.cites -------------------------------------------------------------------------------- /data/cora/cora.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/data/cora/cora.content -------------------------------------------------------------------------------- /pygcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/pygcn/__init__.py -------------------------------------------------------------------------------- /pygcn/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/pygcn/layers.py -------------------------------------------------------------------------------- /pygcn/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/pygcn/models.py -------------------------------------------------------------------------------- /pygcn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/pygcn/train.py -------------------------------------------------------------------------------- /pygcn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1o2h3n/GCN_PyTorch/HEAD/pygcn/utils.py --------------------------------------------------------------------------------