gitextract_62qf39zu/ ├── GNN.py ├── LICENSE ├── README.md ├── calcu_graph.py ├── data/ │ ├── acm.pkl │ ├── acm.txt │ ├── acm_label.txt │ ├── cite.pkl │ ├── cite_label.txt │ ├── dblp.pkl │ ├── dblp.txt │ ├── dblp_label.txt │ ├── evaluation.py │ ├── hhar.pkl │ ├── hhar_label.txt │ ├── pretrain.py │ ├── reut.pkl │ ├── reut_label.txt │ ├── usps.pkl │ ├── usps.txt │ └── usps_label.txt ├── evaluation.py ├── graph/ │ ├── acm_graph.txt │ ├── cite_graph.txt │ ├── dblp_graph.txt │ ├── hhar10_graph.txt │ ├── hhar1_graph.txt │ ├── hhar3_graph.txt │ ├── hhar5_graph.txt │ ├── reut10_graph.txt │ ├── reut1_graph.txt │ ├── reut3_graph.txt │ ├── reut5_graph.txt │ ├── usps10_graph.txt │ ├── usps1_graph.txt │ ├── usps3_graph.txt │ └── usps5_graph.txt ├── requirements.txt ├── sdcn.py └── utils.py