├── .idea ├── .gitignore ├── GNNs-for-Node-Classification.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── data ├── CiteSeer │ ├── processed │ │ ├── data.pt │ │ ├── pre_filter.pt │ │ └── pre_transform.pt │ └── raw │ │ ├── ind.citeseer.allx │ │ ├── ind.citeseer.ally │ │ ├── ind.citeseer.graph │ │ ├── ind.citeseer.test.index │ │ ├── ind.citeseer.tx │ │ ├── ind.citeseer.ty │ │ ├── ind.citeseer.x │ │ └── ind.citeseer.y ├── Cora │ ├── processed │ │ ├── data.pt │ │ ├── pre_filter.pt │ │ └── pre_transform.pt │ └── raw │ │ ├── ind.cora.allx │ │ ├── ind.cora.ally │ │ ├── ind.cora.graph │ │ ├── ind.cora.test.index │ │ ├── ind.cora.tx │ │ ├── ind.cora.ty │ │ ├── ind.cora.x │ │ └── ind.cora.y ├── NELL │ ├── processed │ │ ├── data.pt │ │ ├── pre_filter.pt │ │ └── pre_transform.pt │ └── raw │ │ ├── ind.nell.0.001.allx │ │ ├── ind.nell.0.001.ally │ │ ├── ind.nell.0.001.graph │ │ ├── ind.nell.0.001.test.index │ │ ├── ind.nell.0.001.tx │ │ ├── ind.nell.0.001.ty │ │ ├── ind.nell.0.001.x │ │ ├── ind.nell.0.001.y │ │ ├── ind.nell.0.01.allx │ │ ├── ind.nell.0.01.ally │ │ ├── ind.nell.0.01.graph │ │ ├── ind.nell.0.01.test.index │ │ ├── ind.nell.0.01.tx │ │ ├── ind.nell.0.01.ty │ │ ├── ind.nell.0.01.x │ │ ├── ind.nell.0.01.y │ │ ├── ind.nell.0.1.allx │ │ ├── ind.nell.0.1.ally │ │ ├── ind.nell.0.1.graph │ │ ├── ind.nell.0.1.test.index │ │ ├── ind.nell.0.1.tx │ │ ├── ind.nell.0.1.ty │ │ ├── ind.nell.0.1.x │ │ ├── ind.nell.0.1.y │ │ ├── trans.nell.0.001.graph │ │ ├── trans.nell.0.001.tx │ │ ├── trans.nell.0.001.ty │ │ ├── trans.nell.0.001.x │ │ ├── trans.nell.0.001.y │ │ ├── trans.nell.0.01.graph │ │ ├── trans.nell.0.01.tx │ │ ├── trans.nell.0.01.ty │ │ ├── trans.nell.0.01.x │ │ ├── trans.nell.0.01.y │ │ ├── trans.nell.0.1.graph │ │ ├── trans.nell.0.1.tx │ │ ├── trans.nell.0.1.ty │ │ ├── trans.nell.0.1.x │ │ └── trans.nell.0.1.y └── PubMed │ ├── processed │ ├── data.pt │ ├── pre_filter.pt │ └── pre_transform.pt │ └── raw │ ├── ind.pubmed.allx │ ├── ind.pubmed.ally │ ├── ind.pubmed.graph │ ├── ind.pubmed.test.index │ ├── ind.pubmed.tx │ ├── ind.pubmed.ty │ ├── ind.pubmed.x │ └── ind.pubmed.y ├── get_data.py ├── heterogeneous ├── han.py └── rgcn_dblp.py ├── homogeneous ├── gat.py ├── gcn.py ├── sage.py └── sgc.py ├── models.py └── util.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/GNNs-for-Node-Classification.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/GNNs-for-Node-Classification.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/README.md -------------------------------------------------------------------------------- /data/CiteSeer/processed/data.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/processed/data.pt -------------------------------------------------------------------------------- /data/CiteSeer/processed/pre_filter.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/processed/pre_filter.pt -------------------------------------------------------------------------------- /data/CiteSeer/processed/pre_transform.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/processed/pre_transform.pt -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.allx -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.ally -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.graph -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.test.index -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.tx -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.ty -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.x -------------------------------------------------------------------------------- /data/CiteSeer/raw/ind.citeseer.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/CiteSeer/raw/ind.citeseer.y -------------------------------------------------------------------------------- /data/Cora/processed/data.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/processed/data.pt -------------------------------------------------------------------------------- /data/Cora/processed/pre_filter.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/processed/pre_filter.pt -------------------------------------------------------------------------------- /data/Cora/processed/pre_transform.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/processed/pre_transform.pt -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.allx -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.ally -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.graph -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.test.index -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.tx -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.ty -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.x -------------------------------------------------------------------------------- /data/Cora/raw/ind.cora.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/Cora/raw/ind.cora.y -------------------------------------------------------------------------------- /data/NELL/processed/data.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/processed/data.pt -------------------------------------------------------------------------------- /data/NELL/processed/pre_filter.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/processed/pre_filter.pt -------------------------------------------------------------------------------- /data/NELL/processed/pre_transform.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/processed/pre_transform.pt -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.allx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.ally -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.graph -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.test.index -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.tx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.ty -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.x -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.001.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.001.y -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.allx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.ally -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.graph -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.test.index -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.tx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.ty -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.x -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.01.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.01.y -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.allx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.ally -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.graph -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.test.index -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.tx -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.ty -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.x -------------------------------------------------------------------------------- /data/NELL/raw/ind.nell.0.1.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/ind.nell.0.1.y -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.001.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.001.graph -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.001.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.001.tx -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.001.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.001.ty -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.001.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.001.x -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.001.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.001.y -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.01.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.01.graph -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.01.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.01.tx -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.01.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.01.ty -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.01.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.01.x -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.01.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.01.y -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.1.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.1.graph -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.1.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.1.tx -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.1.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.1.ty -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.1.x -------------------------------------------------------------------------------- /data/NELL/raw/trans.nell.0.1.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/NELL/raw/trans.nell.0.1.y -------------------------------------------------------------------------------- /data/PubMed/processed/data.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/processed/data.pt -------------------------------------------------------------------------------- /data/PubMed/processed/pre_filter.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/processed/pre_filter.pt -------------------------------------------------------------------------------- /data/PubMed/processed/pre_transform.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/processed/pre_transform.pt -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.allx -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.ally -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.graph -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.test.index -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.tx -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.ty -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.x -------------------------------------------------------------------------------- /data/PubMed/raw/ind.pubmed.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/data/PubMed/raw/ind.pubmed.y -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/get_data.py -------------------------------------------------------------------------------- /heterogeneous/han.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/heterogeneous/han.py -------------------------------------------------------------------------------- /heterogeneous/rgcn_dblp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/heterogeneous/rgcn_dblp.py -------------------------------------------------------------------------------- /homogeneous/gat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/homogeneous/gat.py -------------------------------------------------------------------------------- /homogeneous/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/homogeneous/gcn.py -------------------------------------------------------------------------------- /homogeneous/sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/homogeneous/sage.py -------------------------------------------------------------------------------- /homogeneous/sgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/homogeneous/sgc.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/models.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ki-ljl/GNNs-for-Node-Classification/HEAD/util.py --------------------------------------------------------------------------------