├── .idea ├── gnn4lp.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── LICENSE ├── README.md ├── data ├── __init__.py ├── cora │ ├── README │ ├── cora.cites │ ├── cora.content │ └── cora.content_class └── yeast │ └── yeast.edgelist ├── image ├── arga.png └── vgae.png ├── model └── __init__.py ├── requirements.txt ├── setup.cfg ├── setup.py └── src ├── __init__.py ├── arga ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py ├── readme.txt └── train.py ├── graph_att_gae ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py ├── readme.txt └── train.py ├── graph_att_gan ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py └── train.py ├── graph_nheads_att_gae ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py ├── readme.txt └── train.py ├── graph_nheads_att_gan ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py └── train.py ├── util ├── __init__.py ├── cora_class_one_hot_process.py ├── define_optimizer.py ├── load_data.py ├── loss.py └── metrics.py └── vgae ├── __init__.py ├── config.cfg ├── model.py ├── out.log ├── predict.py └── train.py /.idea/gnn4lp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/.idea/gnn4lp.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/data/cora/README -------------------------------------------------------------------------------- /data/cora/cora.cites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/data/cora/cora.cites -------------------------------------------------------------------------------- /data/cora/cora.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/data/cora/cora.content -------------------------------------------------------------------------------- /data/cora/cora.content_class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/data/cora/cora.content_class -------------------------------------------------------------------------------- /data/yeast/yeast.edgelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/data/yeast/yeast.edgelist -------------------------------------------------------------------------------- /image/arga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/image/arga.png -------------------------------------------------------------------------------- /image/vgae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/image/vgae.png -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python3.6 2 | anaconda3 3 | pytorch=1.7 4 | scikit-learn=0.19 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | desciption-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/arga/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/config.cfg -------------------------------------------------------------------------------- /src/arga/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/model.py -------------------------------------------------------------------------------- /src/arga/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/out.log -------------------------------------------------------------------------------- /src/arga/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/predict.py -------------------------------------------------------------------------------- /src/arga/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/readme.txt -------------------------------------------------------------------------------- /src/arga/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/arga/train.py -------------------------------------------------------------------------------- /src/graph_att_gae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graph_att_gae/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gae/config.cfg -------------------------------------------------------------------------------- /src/graph_att_gae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gae/model.py -------------------------------------------------------------------------------- /src/graph_att_gae/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gae/out.log -------------------------------------------------------------------------------- /src/graph_att_gae/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gae/predict.py -------------------------------------------------------------------------------- /src/graph_att_gae/readme.txt: -------------------------------------------------------------------------------- 1 | 利用attentoin的图卷积的(娈分)自编码 -------------------------------------------------------------------------------- /src/graph_att_gae/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gae/train.py -------------------------------------------------------------------------------- /src/graph_att_gan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graph_att_gan/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gan/config.cfg -------------------------------------------------------------------------------- /src/graph_att_gan/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gan/model.py -------------------------------------------------------------------------------- /src/graph_att_gan/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gan/out.log -------------------------------------------------------------------------------- /src/graph_att_gan/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gan/predict.py -------------------------------------------------------------------------------- /src/graph_att_gan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_att_gan/train.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gae/config.cfg -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gae/model.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gae/out.log -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gae/predict.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/readme.txt: -------------------------------------------------------------------------------- 1 | 利用attentoin的图卷积的(娈分)自编码 -------------------------------------------------------------------------------- /src/graph_nheads_att_gae/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gae/train.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gan/config.cfg -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gan/model.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gan/out.log -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gan/predict.py -------------------------------------------------------------------------------- /src/graph_nheads_att_gan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/graph_nheads_att_gan/train.py -------------------------------------------------------------------------------- /src/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/util/cora_class_one_hot_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/util/cora_class_one_hot_process.py -------------------------------------------------------------------------------- /src/util/define_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/util/define_optimizer.py -------------------------------------------------------------------------------- /src/util/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/util/load_data.py -------------------------------------------------------------------------------- /src/util/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/util/loss.py -------------------------------------------------------------------------------- /src/util/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/util/metrics.py -------------------------------------------------------------------------------- /src/vgae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vgae/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/vgae/config.cfg -------------------------------------------------------------------------------- /src/vgae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/vgae/model.py -------------------------------------------------------------------------------- /src/vgae/out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/vgae/out.log -------------------------------------------------------------------------------- /src/vgae/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/vgae/predict.py -------------------------------------------------------------------------------- /src/vgae/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangnanboy/gnn4lp/HEAD/src/vgae/train.py --------------------------------------------------------------------------------