├── README.md ├── citeseer_multirun.py ├── cora_multirun.py ├── data ├── enzymes.mat ├── 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 ├── 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 ├── 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 ├── ppimat.mat └── protein.mat ├── enzymes_allfeats.py ├── enzymes_nodelabel.py ├── inits.py ├── layers.py ├── logs ├── citeseer_result.xlsx ├── cora_result.xlsx ├── depthwise_layer.png ├── enzym_fullfeat │ ├── enzyms_fullfeat_custom_nk4_0.csv │ ├── enzyms_fullfeat_custom_nk4_1.csv │ ├── enzyms_fullfeat_custom_nk4_10.csv │ ├── enzyms_fullfeat_custom_nk4_11.csv │ ├── enzyms_fullfeat_custom_nk4_12.csv │ ├── enzyms_fullfeat_custom_nk4_13.csv │ ├── enzyms_fullfeat_custom_nk4_14.csv │ ├── enzyms_fullfeat_custom_nk4_15.csv │ ├── enzyms_fullfeat_custom_nk4_16.csv │ ├── enzyms_fullfeat_custom_nk4_17.csv │ ├── enzyms_fullfeat_custom_nk4_18.csv │ ├── enzyms_fullfeat_custom_nk4_19.csv │ ├── enzyms_fullfeat_custom_nk4_2.csv │ ├── enzyms_fullfeat_custom_nk4_3.csv │ ├── enzyms_fullfeat_custom_nk4_4.csv │ ├── enzyms_fullfeat_custom_nk4_5.csv │ ├── enzyms_fullfeat_custom_nk4_6.csv │ ├── enzyms_fullfeat_custom_nk4_7.csv │ ├── enzyms_fullfeat_custom_nk4_8.csv │ ├── enzyms_fullfeat_custom_nk4_9.csv │ └── report.m ├── enzym_label │ ├── enzyms_label_custom_nk3_0.csv │ ├── enzyms_label_custom_nk3_1.csv │ ├── enzyms_label_custom_nk3_10.csv │ ├── enzyms_label_custom_nk3_11.csv │ ├── enzyms_label_custom_nk3_12.csv │ ├── enzyms_label_custom_nk3_13.csv │ ├── enzyms_label_custom_nk3_2.csv │ ├── enzyms_label_custom_nk3_3.csv │ ├── enzyms_label_custom_nk3_4.csv │ ├── enzyms_label_custom_nk3_5.csv │ ├── enzyms_label_custom_nk3_6.csv │ ├── enzyms_label_custom_nk3_7.csv │ ├── enzyms_label_custom_nk3_8.csv │ ├── enzyms_label_custom_nk3_9.csv │ └── report.m ├── ourscorafreq.png ├── ppi_result.xlsx ├── protein_label │ ├── protein_label_custom_nk2_0.csv │ ├── protein_label_custom_nk2_1.csv │ ├── protein_label_custom_nk2_10.csv │ ├── protein_label_custom_nk2_2.csv │ ├── protein_label_custom_nk2_3.csv │ ├── protein_label_custom_nk2_4.csv │ ├── protein_label_custom_nk2_5.csv │ ├── protein_label_custom_nk2_6.csv │ ├── protein_label_custom_nk2_7.csv │ ├── protein_label_custom_nk2_8.csv │ ├── protein_label_custom_nk2_9.csv │ └── report.m ├── pubmed_result.xlsx ├── report.m └── result.jpg ├── metrics.py ├── models.py ├── ppi_singlerun.py ├── protein_nodelabel.py ├── pubmed_multirun.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/README.md -------------------------------------------------------------------------------- /citeseer_multirun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/citeseer_multirun.py -------------------------------------------------------------------------------- /cora_multirun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/cora_multirun.py -------------------------------------------------------------------------------- /data/enzymes.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/enzymes.mat -------------------------------------------------------------------------------- /data/ind.citeseer.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.allx -------------------------------------------------------------------------------- /data/ind.citeseer.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.ally -------------------------------------------------------------------------------- /data/ind.citeseer.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.graph -------------------------------------------------------------------------------- /data/ind.citeseer.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.test.index -------------------------------------------------------------------------------- /data/ind.citeseer.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.tx -------------------------------------------------------------------------------- /data/ind.citeseer.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.ty -------------------------------------------------------------------------------- /data/ind.citeseer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.x -------------------------------------------------------------------------------- /data/ind.citeseer.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.citeseer.y -------------------------------------------------------------------------------- /data/ind.cora.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.allx -------------------------------------------------------------------------------- /data/ind.cora.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.ally -------------------------------------------------------------------------------- /data/ind.cora.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.graph -------------------------------------------------------------------------------- /data/ind.cora.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.test.index -------------------------------------------------------------------------------- /data/ind.cora.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.tx -------------------------------------------------------------------------------- /data/ind.cora.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.ty -------------------------------------------------------------------------------- /data/ind.cora.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.x -------------------------------------------------------------------------------- /data/ind.cora.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.cora.y -------------------------------------------------------------------------------- /data/ind.pubmed.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.allx -------------------------------------------------------------------------------- /data/ind.pubmed.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.ally -------------------------------------------------------------------------------- /data/ind.pubmed.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.graph -------------------------------------------------------------------------------- /data/ind.pubmed.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.test.index -------------------------------------------------------------------------------- /data/ind.pubmed.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.tx -------------------------------------------------------------------------------- /data/ind.pubmed.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.ty -------------------------------------------------------------------------------- /data/ind.pubmed.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.x -------------------------------------------------------------------------------- /data/ind.pubmed.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ind.pubmed.y -------------------------------------------------------------------------------- /data/ppimat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/ppimat.mat -------------------------------------------------------------------------------- /data/protein.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/data/protein.mat -------------------------------------------------------------------------------- /enzymes_allfeats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/enzymes_allfeats.py -------------------------------------------------------------------------------- /enzymes_nodelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/enzymes_nodelabel.py -------------------------------------------------------------------------------- /inits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/inits.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/layers.py -------------------------------------------------------------------------------- /logs/citeseer_result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/citeseer_result.xlsx -------------------------------------------------------------------------------- /logs/cora_result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/cora_result.xlsx -------------------------------------------------------------------------------- /logs/depthwise_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/depthwise_layer.png -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_0.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_1.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_10.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_11.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_12.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_13.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_14.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_15.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_16.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_17.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_18.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_19.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_2.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_3.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_4.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_5.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_6.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_7.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_8.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/enzyms_fullfeat_custom_nk4_9.csv -------------------------------------------------------------------------------- /logs/enzym_fullfeat/report.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_fullfeat/report.m -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_0.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_1.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_10.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_11.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_12.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_13.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_2.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_3.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_4.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_5.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_6.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_7.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_8.csv -------------------------------------------------------------------------------- /logs/enzym_label/enzyms_label_custom_nk3_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/enzyms_label_custom_nk3_9.csv -------------------------------------------------------------------------------- /logs/enzym_label/report.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/enzym_label/report.m -------------------------------------------------------------------------------- /logs/ourscorafreq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/ourscorafreq.png -------------------------------------------------------------------------------- /logs/ppi_result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/ppi_result.xlsx -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_0.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_1.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_10.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_2.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_3.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_4.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_5.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_6.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_7.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_8.csv -------------------------------------------------------------------------------- /logs/protein_label/protein_label_custom_nk2_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/protein_label_custom_nk2_9.csv -------------------------------------------------------------------------------- /logs/protein_label/report.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/protein_label/report.m -------------------------------------------------------------------------------- /logs/pubmed_result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/pubmed_result.xlsx -------------------------------------------------------------------------------- /logs/report.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/report.m -------------------------------------------------------------------------------- /logs/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/logs/result.jpg -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/metrics.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/models.py -------------------------------------------------------------------------------- /ppi_singlerun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/ppi_singlerun.py -------------------------------------------------------------------------------- /protein_nodelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/protein_nodelabel.py -------------------------------------------------------------------------------- /pubmed_multirun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/pubmed_multirun.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balcilar/Spectral-Designed-Graph-Convolutions/HEAD/utils.py --------------------------------------------------------------------------------