├── README.md ├── model ├── __init__.py ├── compgcn.py └── layer.py ├── requirements.txt ├── run.py └── utils ├── __init__.py ├── data_set.py └── process_data.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/README.md -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/compgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/model/compgcn.py -------------------------------------------------------------------------------- /model/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/model/layer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/run.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/data_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/utils/data_set.py -------------------------------------------------------------------------------- /utils/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toooooodo/CompGCN-DGL/HEAD/utils/process_data.py --------------------------------------------------------------------------------