This repository contains a PyTorch implementation for our paper "ADA-GAD: Anomaly-Denoised Autoencoders for Graph Anomaly Detection".
We introduce a novel twostage framework called Anomaly-Denoised Autoencoders for Graph Anomaly Detection (ADA-GAD). In the first stage, we design a learning-free anomaly-denoised augmentation method to generate graphs with reduced anomaly levels. We pretrain graph autoencoders on these augmented graphs at multiple levels, which enables the graph autoencoders to capture normal patterns. In the next stage, the decoders are retrained for detection on the original graph, benefiting from the multi-level representations learned in the previous stage.
git clone https://github.com/jweihe/ADA-GAD.git
cd ADA-GAD
conda create -n ada-gad python=3.8
conda activate ada-gad
pip install -r requirements.txt
Use the following command to run the main script with configuration options:
python main.py --use_cfg --seeds 0 --dataset $dataset
We support using datasets from data. You can download these datasets and place them in the data directory data
.
Alternatively, you can run the code directly, and the dataset will be downloaded automatically.
@article{he2023ada,
title={ADA-GAD: Anomaly-Denoised Autoencoders for Graph Anomaly Detection},
author={He, Junwei and Xu, Qianqian and Jiang, Yangbangyan and Wang, Zitai and Huang, Qingming},
journal={arXiv preprint arXiv:2312.14535},
year={2023}
}
This code is built on pygod and GraphMAE. We thank the authors for sharing the codes.