├── .gitignore ├── .idea ├── PyGCN_Visualization.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── 2D.png ├── 3D.gif ├── LICENCE ├── README.md ├── data └── cora │ ├── README │ ├── cora.cites │ └── cora.content ├── figure.png ├── pygcn ├── MNIST_with_t-SNE.py ├── S_data_with_t-SNE.py ├── __init__.py ├── demos.py ├── layers.py ├── models.py ├── test.py ├── train.py ├── try_of_BuidingGraph.py ├── try_of_LoadData.py ├── try_of_normalize.py ├── try_of_onehot.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.idea/PyGCN_Visualization.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 30 | 31 |