├── LICENSE ├── README.md ├── data ├── chameleon │ ├── chameleon_1_dijkstra.npz │ ├── chameleon_1_marked_adj.npz │ ├── chameleon_structural_3_0.3_0.5_1.npz │ ├── out1_graph_edges.txt │ └── out1_node_feature_label.txt ├── citeseer_ml │ ├── citeseer_ml_2_dijkstra.npz │ ├── citeseer_ml_2_marked_adj.npz │ ├── citeseer_ml_structural_3_0.3_0.5_2.npz │ ├── out1_graph_edges.txt │ └── out1_node_feature_label.txt ├── cora_ml │ ├── cora_ml_2_dijkstra.npz │ ├── cora_ml_2_marked_adj.npz │ ├── cora_ml_structural_3_0.3_0.5_2.npz │ ├── out1_graph_edges.txt │ └── out1_node_feature_label.txt ├── crocodile │ ├── crocodile_1_dijkstra.npz │ ├── crocodile_1_marked_adj.npz │ ├── out1_graph_edges.txt │ └── out1_node_feature_label.txt └── squirrel │ ├── out1_graph_edges.txt │ ├── out1_node_feature_label.txt │ ├── squirrel_1_dijkstra.npz │ └── squirrel_1_marked_adj.npz ├── requirements.txt ├── run_chameleon.txt ├── run_citeseer_ml.txt ├── run_cora_ml.txt ├── run_crocodile.txt ├── run_squirrel.txt ├── structural_neighborhood_l ├── space_relation_chameleon_isomap.txt ├── space_relation_chameleon_poincare.txt ├── space_relation_chameleon_struc2vec.txt ├── space_relation_citeseer_ml_isomap.txt ├── space_relation_citeseer_ml_poincare.txt ├── space_relation_citeseer_ml_struc2vec.txt ├── space_relation_cora_ml_isomap.txt ├── space_relation_cora_ml_poincare.txt ├── space_relation_cora_ml_struc2vec.txt ├── space_relation_crocodile_isomap.txt ├── space_relation_crocodile_poincare.txt ├── space_relation_crocodile_struc2vec.txt ├── space_relation_squirrel_isomap.txt ├── space_relation_squirrel_poincare.txt └── space_relation_squirrel_struc2vec.txt ├── train_WGCN.py ├── unconnected_nodes ├── citeseer_ml_unconnected_nodes.txt └── cora_ml_unconnected_nodes.txt ├── utils_basic.py ├── utils_data.py ├── utils_dijkstra.py ├── utils_layers.py └── utils_structural.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/README.md -------------------------------------------------------------------------------- /data/chameleon/chameleon_1_dijkstra.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/chameleon/chameleon_1_dijkstra.npz -------------------------------------------------------------------------------- /data/chameleon/chameleon_1_marked_adj.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/chameleon/chameleon_1_marked_adj.npz -------------------------------------------------------------------------------- /data/chameleon/chameleon_structural_3_0.3_0.5_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/chameleon/chameleon_structural_3_0.3_0.5_1.npz -------------------------------------------------------------------------------- /data/chameleon/out1_graph_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/chameleon/out1_graph_edges.txt -------------------------------------------------------------------------------- /data/chameleon/out1_node_feature_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/chameleon/out1_node_feature_label.txt -------------------------------------------------------------------------------- /data/citeseer_ml/citeseer_ml_2_dijkstra.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/citeseer_ml/citeseer_ml_2_dijkstra.npz -------------------------------------------------------------------------------- /data/citeseer_ml/citeseer_ml_2_marked_adj.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/citeseer_ml/citeseer_ml_2_marked_adj.npz -------------------------------------------------------------------------------- /data/citeseer_ml/citeseer_ml_structural_3_0.3_0.5_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/citeseer_ml/citeseer_ml_structural_3_0.3_0.5_2.npz -------------------------------------------------------------------------------- /data/citeseer_ml/out1_graph_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/citeseer_ml/out1_graph_edges.txt -------------------------------------------------------------------------------- /data/citeseer_ml/out1_node_feature_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/citeseer_ml/out1_node_feature_label.txt -------------------------------------------------------------------------------- /data/cora_ml/cora_ml_2_dijkstra.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/cora_ml/cora_ml_2_dijkstra.npz -------------------------------------------------------------------------------- /data/cora_ml/cora_ml_2_marked_adj.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/cora_ml/cora_ml_2_marked_adj.npz -------------------------------------------------------------------------------- /data/cora_ml/cora_ml_structural_3_0.3_0.5_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/cora_ml/cora_ml_structural_3_0.3_0.5_2.npz -------------------------------------------------------------------------------- /data/cora_ml/out1_graph_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/cora_ml/out1_graph_edges.txt -------------------------------------------------------------------------------- /data/cora_ml/out1_node_feature_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/cora_ml/out1_node_feature_label.txt -------------------------------------------------------------------------------- /data/crocodile/crocodile_1_dijkstra.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/crocodile/crocodile_1_dijkstra.npz -------------------------------------------------------------------------------- /data/crocodile/crocodile_1_marked_adj.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/crocodile/crocodile_1_marked_adj.npz -------------------------------------------------------------------------------- /data/crocodile/out1_graph_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/crocodile/out1_graph_edges.txt -------------------------------------------------------------------------------- /data/crocodile/out1_node_feature_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/crocodile/out1_node_feature_label.txt -------------------------------------------------------------------------------- /data/squirrel/out1_graph_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/squirrel/out1_graph_edges.txt -------------------------------------------------------------------------------- /data/squirrel/out1_node_feature_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/squirrel/out1_node_feature_label.txt -------------------------------------------------------------------------------- /data/squirrel/squirrel_1_dijkstra.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/squirrel/squirrel_1_dijkstra.npz -------------------------------------------------------------------------------- /data/squirrel/squirrel_1_marked_adj.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/data/squirrel/squirrel_1_marked_adj.npz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_chameleon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/run_chameleon.txt -------------------------------------------------------------------------------- /run_citeseer_ml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/run_citeseer_ml.txt -------------------------------------------------------------------------------- /run_cora_ml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/run_cora_ml.txt -------------------------------------------------------------------------------- /run_crocodile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/run_crocodile.txt -------------------------------------------------------------------------------- /run_squirrel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/run_squirrel.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_chameleon_isomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_chameleon_isomap.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_chameleon_poincare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_chameleon_poincare.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_chameleon_struc2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_chameleon_struc2vec.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_citeseer_ml_isomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_citeseer_ml_isomap.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_citeseer_ml_poincare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_citeseer_ml_poincare.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_citeseer_ml_struc2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_citeseer_ml_struc2vec.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_cora_ml_isomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_cora_ml_isomap.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_cora_ml_poincare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_cora_ml_poincare.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_cora_ml_struc2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_cora_ml_struc2vec.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_crocodile_isomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_crocodile_isomap.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_crocodile_poincare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_crocodile_poincare.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_crocodile_struc2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_crocodile_struc2vec.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_squirrel_isomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_squirrel_isomap.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_squirrel_poincare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_squirrel_poincare.txt -------------------------------------------------------------------------------- /structural_neighborhood_l/space_relation_squirrel_struc2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/structural_neighborhood_l/space_relation_squirrel_struc2vec.txt -------------------------------------------------------------------------------- /train_WGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/train_WGCN.py -------------------------------------------------------------------------------- /unconnected_nodes/citeseer_ml_unconnected_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/unconnected_nodes/citeseer_ml_unconnected_nodes.txt -------------------------------------------------------------------------------- /unconnected_nodes/cora_ml_unconnected_nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/unconnected_nodes/cora_ml_unconnected_nodes.txt -------------------------------------------------------------------------------- /utils_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/utils_basic.py -------------------------------------------------------------------------------- /utils_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/utils_data.py -------------------------------------------------------------------------------- /utils_dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/utils_dijkstra.py -------------------------------------------------------------------------------- /utils_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/utils_layers.py -------------------------------------------------------------------------------- /utils_structural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruizhang-ai/WGCN_Graph-Convolutional-Networks-with-Weighted-Structural-Features/HEAD/utils_structural.py --------------------------------------------------------------------------------