├── .gitignore ├── HIN&PairWise ├── DataLookup_V3.py ├── TF_IDF.py ├── add_entity_entity.py ├── add_key_entity.py ├── add_key_key.py ├── create_dict.py ├── create_topic.py ├── data_pro.py ├── extract_entities_write.py └── remove_ambiguous.py ├── KIES ├── CalculateNMI.py ├── adj_matrix.py ├── cluster.py └── create_matrix.py ├── LICENSE ├── P-GCN ├── GCN.py ├── PGCN.py └── layers.py ├── PP-GCN ├── GCN.py ├── PPGCN.py └── layers.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/.gitignore -------------------------------------------------------------------------------- /HIN&PairWise/DataLookup_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/DataLookup_V3.py -------------------------------------------------------------------------------- /HIN&PairWise/TF_IDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/TF_IDF.py -------------------------------------------------------------------------------- /HIN&PairWise/add_entity_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/add_entity_entity.py -------------------------------------------------------------------------------- /HIN&PairWise/add_key_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/add_key_entity.py -------------------------------------------------------------------------------- /HIN&PairWise/add_key_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/add_key_key.py -------------------------------------------------------------------------------- /HIN&PairWise/create_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/create_dict.py -------------------------------------------------------------------------------- /HIN&PairWise/create_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/create_topic.py -------------------------------------------------------------------------------- /HIN&PairWise/data_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/data_pro.py -------------------------------------------------------------------------------- /HIN&PairWise/extract_entities_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/extract_entities_write.py -------------------------------------------------------------------------------- /HIN&PairWise/remove_ambiguous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/HIN&PairWise/remove_ambiguous.py -------------------------------------------------------------------------------- /KIES/CalculateNMI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/KIES/CalculateNMI.py -------------------------------------------------------------------------------- /KIES/adj_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/KIES/adj_matrix.py -------------------------------------------------------------------------------- /KIES/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/KIES/cluster.py -------------------------------------------------------------------------------- /KIES/create_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/KIES/create_matrix.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/LICENSE -------------------------------------------------------------------------------- /P-GCN/GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/P-GCN/GCN.py -------------------------------------------------------------------------------- /P-GCN/PGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/P-GCN/PGCN.py -------------------------------------------------------------------------------- /P-GCN/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/P-GCN/layers.py -------------------------------------------------------------------------------- /PP-GCN/GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/PP-GCN/GCN.py -------------------------------------------------------------------------------- /PP-GCN/PPGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/PP-GCN/PPGCN.py -------------------------------------------------------------------------------- /PP-GCN/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RingBDStack/PPGCN/HEAD/PP-GCN/layers.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PPGCN --------------------------------------------------------------------------------