中文README : cnREADME.md.
SAGOD (Static Attributed Graph Outlier Detection) is an implementation of anomaly detection models on static attributed graph. Inspierd by PyOD and PyGOD, we designed convenient interface to train model and make prediction. SAGOD support the following models:
- AdONE : Adversarial Outlier Aware Network Embedding;
- ALARM : A deep multi-view framework for anomaly detection;
- ANOMALOUS : A Joint Modeling Approach for Anomaly Detection on Attributed Networks;
- AnomalyDAE : Anomaly Detection through a Dual Autoencoder;
- ComGA : Community-Aware Attributed Graph Anomaly Detection;
- DeepAE : Anomaly Detection with Deep Graph Autoencoders on Attributed Networks.
- DOMINANT : Deep Anomaly Detection on Attributed Networks;
- DONE : Deep Outlier Aware Network Embedding;
- GAAN : Generative Adversarial Attributed Network;
- OCGNN : One-Class GNN;
- ONE : Outlier Aware Network Embedding;
- Radar : Residual Analysis for Anomaly Detection in Attributed Networks.
- ResGCN : Residual Graph Convolutional Network.
- SADAG : Semi-supervised Anomaly Detection on Attributed Graphs.
We are still updating and adding models. It's worth nothing that the original purpose of SAGOD is to implement anomaly detection models on graph, in order to help researchers who are interested in this area (including me).
In test.py
, we generate anomaly data from MUTAG, and use different models to train it. The ROC curve is shown below:
pip3 install sagod
or
git clone https://github.com/Kaslanarian/SAGOD
cd SAGOD
python3 setup.py install
Here is an example to use SAGOD:
from sagod.models import DOMINANT
from sagod.utils import struct_ano_injection, attr_ano_injection
data = ... # Graph data, type:torch_geometric.data.Data
data.y = torch.zeros(data.num_nodes)
data = struct_ano_injection(data, 10, 10) # Structrual anomaly injection.
data = attr_ano_injection(data, 100, 50) # Attributed anmaly injection.
model = DOMINANT(verbose=True).fit(data, data.y)
fpr, tpr, _ = roc_curve(data.y.numpy(), model.decision_scores_)[:2]
plt.plot(fpr, tpr, label='DOMINANT') # plot ROC curve
plt.legend()
plt.show()
Though SAGOD is similar to PyGOD, we keep innovating and improving:
- The model "ONE" in PyGOD was implemented based on authors' responsitory. We improved it with vectorization, achieving a 100% performance improvement;
- We implemented ALARM, which can detect anomaly in multi-view graph;
- We implemented more models including ComGA, DeepAE, etc, which is not included in PyGOD;
- ...
- Support batch mechanism and huge graph input;
- Support GPU;
- More models implementation;
- ...
@Misc{xing2022sagod,
author = {Xing, Cunyuan},
title = {{SAGOD}: A library for static sttributed graph outlier detection},
year = {2022},
url = " https://github.com/Kaslanarian/SAGOD"
}
- Bandyopadhyay, Sambaran, Saley Vishal Vivek, and M. N. Murty. "Outlier resistant unsupervised deep architectures for attributed network embedding." Proceedings of the 13th international conference on web search and data mining. 2020.
- Bandyopadhyay, Sambaran, N. Lokesh, and M. Narasimha Murty. "Outlier aware network embedding for attributed networks." Proceedings of the AAAI conference on artificial intelligence. Vol. 33. No. 01. 2019.
- Fan, Haoyi, Fengbin Zhang, and Zuoyong Li. "AnomalyDAE: Dual autoencoder for anomaly detection on attributed networks." ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2020.
- Chen, Zhenxing, et al. "Generative adversarial attributed network anomaly detection." Proceedings of the 29th ACM International Conference on Information & Knowledge Management. 2020.
- Ding, Kaize, et al. "Deep anomaly detection on attributed networks." Proceedings of the 2019 SIAM International Conference on Data Mining. Society for Industrial and Applied Mathematics, 2019.
- Kumagai, Atsutoshi, Tomoharu Iwata, and Yasuhiro Fujiwara. "Semi-supervised anomaly detection on attributed graphs." 2021 International Joint Conference on Neural Networks (IJCNN). IEEE, 2021.
- Li, Jundong, et al. "Radar: Residual Analysis for Anomaly Detection in Attributed Networks." IJCAI. 2017.
- Luo, Xuexiong, et al. "ComGA: Community-Aware Attributed Graph Anomaly Detection." Proceedings of the Fifteenth ACM International Conference on Web Search and Data Mining. 2022.
- Pei, Yulong, et al. "ResGCN: attention-based deep residual modeling for anomaly detection on attributed networks." Machine Learning 111.2 (2022): 519-541.
- Peng, Zhen, et al. "A deep multi-view framework for anomaly detection on attributed networks." IEEE Transactions on Knowledge and Data Engineering (2020).
- Peng, Zhen, et al. "ANOMALOUS: A Joint Modeling Approach for Anomaly Detection on Attributed Networks." IJCAI. 2018.
- Wang, Xuhong, et al. "One-class graph neural networks for anomaly detection in attributed networks." Neural computing and applications 33.18 (2021): 12073-12085.
- Zhu, Dali, Yuchen Ma, and Yinlong Liu. "Anomaly detection with deep graph autoencoders on attributed networks." 2020 IEEE Symposium on Computers and Communications (ISCC). IEEE, 2020.