├── README.md ├── checkpoint ├── BlogCatalog │ └── Readme └── cora │ └── Readme ├── data ├── Put_dataset_folder_here └── twitter_fake_ids.csv ├── data_load.py ├── main.py ├── models.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint/BlogCatalog/Readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /checkpoint/cora/Readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/Put_dataset_folder_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/twitter_fake_ids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/data/twitter_fake_ids.csv -------------------------------------------------------------------------------- /data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/data_load.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/models.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TianxiangZhao/GraphSmote/HEAD/utils.py --------------------------------------------------------------------------------