├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── algorithms ├── FdGars │ ├── FdGars.py │ ├── FdGars_main.py │ └── README.md ├── GAS │ ├── GAS.py │ ├── GAS_main.py │ └── README.md ├── GEM │ ├── GEM.py │ ├── GEM_main.py │ └── readme.md ├── GraphConsis │ ├── GraphConsis.py │ ├── GraphConsis_main.py │ └── README.md ├── GraphSage │ ├── GraphSage.py │ ├── GraphSage_main.py │ └── README.md ├── Player2Vec │ ├── Player2Vec.py │ ├── Player2Vec_main.py │ └── README.md └── SemiGNN │ ├── README.md │ ├── SemiGNN.py │ └── SemiGNN_main.py ├── dataset ├── DBLP4057_GAT_with_idx_tra200_val_800.zip └── Yelpchi.zip ├── layers └── layers.py ├── logo.png ├── reference ├── fdgars.txt ├── gas.txt ├── gem.txt ├── geniepath.txt ├── graphconsis.txt ├── graphsage.txt ├── hacud.txt ├── player2vec.txt └── semignn.txt ├── requirements.txt ├── setup.py ├── test.py └── utils ├── data_loader.py ├── metrics.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.mat 3 | /.idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/FdGars/FdGars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/FdGars/FdGars.py -------------------------------------------------------------------------------- /algorithms/FdGars/FdGars_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/FdGars/FdGars_main.py -------------------------------------------------------------------------------- /algorithms/FdGars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/FdGars/README.md -------------------------------------------------------------------------------- /algorithms/GAS/GAS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GAS/GAS.py -------------------------------------------------------------------------------- /algorithms/GAS/GAS_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GAS/GAS_main.py -------------------------------------------------------------------------------- /algorithms/GAS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GAS/README.md -------------------------------------------------------------------------------- /algorithms/GEM/GEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GEM/GEM.py -------------------------------------------------------------------------------- /algorithms/GEM/GEM_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GEM/GEM_main.py -------------------------------------------------------------------------------- /algorithms/GEM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GEM/readme.md -------------------------------------------------------------------------------- /algorithms/GraphConsis/GraphConsis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphConsis/GraphConsis.py -------------------------------------------------------------------------------- /algorithms/GraphConsis/GraphConsis_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphConsis/GraphConsis_main.py -------------------------------------------------------------------------------- /algorithms/GraphConsis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphConsis/README.md -------------------------------------------------------------------------------- /algorithms/GraphSage/GraphSage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphSage/GraphSage.py -------------------------------------------------------------------------------- /algorithms/GraphSage/GraphSage_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphSage/GraphSage_main.py -------------------------------------------------------------------------------- /algorithms/GraphSage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/GraphSage/README.md -------------------------------------------------------------------------------- /algorithms/Player2Vec/Player2Vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/Player2Vec/Player2Vec.py -------------------------------------------------------------------------------- /algorithms/Player2Vec/Player2Vec_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/Player2Vec/Player2Vec_main.py -------------------------------------------------------------------------------- /algorithms/Player2Vec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/Player2Vec/README.md -------------------------------------------------------------------------------- /algorithms/SemiGNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/SemiGNN/README.md -------------------------------------------------------------------------------- /algorithms/SemiGNN/SemiGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/SemiGNN/SemiGNN.py -------------------------------------------------------------------------------- /algorithms/SemiGNN/SemiGNN_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/algorithms/SemiGNN/SemiGNN_main.py -------------------------------------------------------------------------------- /dataset/DBLP4057_GAT_with_idx_tra200_val_800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/dataset/DBLP4057_GAT_with_idx_tra200_val_800.zip -------------------------------------------------------------------------------- /dataset/Yelpchi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/dataset/Yelpchi.zip -------------------------------------------------------------------------------- /layers/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/layers/layers.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/logo.png -------------------------------------------------------------------------------- /reference/fdgars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/fdgars.txt -------------------------------------------------------------------------------- /reference/gas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/gas.txt -------------------------------------------------------------------------------- /reference/gem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/gem.txt -------------------------------------------------------------------------------- /reference/geniepath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/geniepath.txt -------------------------------------------------------------------------------- /reference/graphconsis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/graphconsis.txt -------------------------------------------------------------------------------- /reference/graphsage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/graphsage.txt -------------------------------------------------------------------------------- /reference/hacud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/hacud.txt -------------------------------------------------------------------------------- /reference/player2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/player2vec.txt -------------------------------------------------------------------------------- /reference/semignn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/reference/semignn.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/test.py -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-graph/DGFraud-TF2/HEAD/utils/utils.py --------------------------------------------------------------------------------