├── .gitignore ├── common.py ├── experiment-data ├── bitcoin_alpha-test-1.edgelist ├── bitcoin_alpha-train-1.edgelist └── sign-bitcoin_alpha-node_dict.json ├── fea_extra.py ├── imgs ├── SiGAT.png └── sdgnn.png ├── logistic_function.py ├── readme.md ├── readme_sdgnn.md ├── readme_sigat.md ├── requirements.txt ├── sdgnn.py └── sigat.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/.gitignore -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/common.py -------------------------------------------------------------------------------- /experiment-data/bitcoin_alpha-test-1.edgelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/experiment-data/bitcoin_alpha-test-1.edgelist -------------------------------------------------------------------------------- /experiment-data/bitcoin_alpha-train-1.edgelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/experiment-data/bitcoin_alpha-train-1.edgelist -------------------------------------------------------------------------------- /experiment-data/sign-bitcoin_alpha-node_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/experiment-data/sign-bitcoin_alpha-node_dict.json -------------------------------------------------------------------------------- /fea_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/fea_extra.py -------------------------------------------------------------------------------- /imgs/SiGAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/imgs/SiGAT.png -------------------------------------------------------------------------------- /imgs/sdgnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/imgs/sdgnn.png -------------------------------------------------------------------------------- /logistic_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/logistic_function.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/readme.md -------------------------------------------------------------------------------- /readme_sdgnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/readme_sdgnn.md -------------------------------------------------------------------------------- /readme_sigat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/readme_sigat.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/requirements.txt -------------------------------------------------------------------------------- /sdgnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/sdgnn.py -------------------------------------------------------------------------------- /sigat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjunjie-cs/SiGAT/HEAD/sigat.py --------------------------------------------------------------------------------