文章链接:http://www.public.asu.edu/~kding9/pdf/SDM2019_Deep.pdf

源码链接:https://github.com/kaize0409/GCN_AnomalyDetection

TL;DR

目前属性网络中的异常检测方法都是使用浅层的学习机制或者子空间特征,但现实中属性网络非常稀疏并且数据是非线性的。论文中提出一种基于图自编码器的异常检测模型 DOMINANT-Deep Anomaly Detection on Attributed Networks,同时考虑了结构特征和属性特征,实验在真实网络中取得了较好的效果;

Problem Definition

  • Attributed Networks: 属性网络G=(V,E,X)\mathcal{G}=(\mathcal{V}, \mathcal{E}, \mathbf{X}), 节点集合V=n|\mathcal{V}| =n, 边集合E=m|\mathcal{E}| =m,节点属性XRn×d\mathbf{X} \in \mathbf{R} ^{n×d},邻接矩阵A\mathbf{A}
  • Anomaly Ranking on Attributed Networks:属性网络中的异常检测形式化转化为 图中所有节点的异常度排序;

Model / Algorithm

整个模型的架构图如下所示,主要包含三部分:

  • attributed network encoder: 使用GCN架构来进行node embedding;
  • structure reconstruction decoder: 使用 node embedding 来重构图结构;
  • attribute reconstruction decoder:使用 node embedding 来重构图中节点属性;

综合考虑属性和结构的重构误差来判定节点的异常;

Attributed Network Encoder

采用 GCN 模型来embedding,每层的计算公式如下:

H(l+1)=f(H(l),AW(l))=σ(D~12A~D~12H(l)W(l))\mathbf{H}^{(l+1)}=f\left(\mathbf{H}^{(l)}, \mathbf{A} \mid \mathbf{W}^{(l)}\right)=\sigma\left(\widetilde{\mathbf{D}}^{-\frac{1}{2}} \widetilde{\mathbf{A}} \tilde{\mathbf{D}}^{-\frac{1}{2}} \mathbf{H}^{(l)} \mathbf{W}^{(l)}\right)

文章中采用了三层图卷积架构,

H(1)=fRelu(X,AW(0))H(2)=fRelu(H(1),AW(1))Z=H(3)=fRelu(H(2),AW(2))\begin{aligned} \mathbf{H}^{(1)} &=f_{R e l u}\left(\mathbf{X}, \mathbf{A} \mid \mathbf{W}^{(0)}\right) \\\\ \mathbf{H}^{(2)} &=f_{R e l u}\left(\mathbf{H}^{(1)}, \mathbf{A} \mid \mathbf{W}^{(1)}\right) \\\\ \mathbf{Z}=\mathbf{H}^{(3)} &=f_{R e l u}\left(\mathbf{H}^{(2)}, \mathbf{A} \mid \mathbf{W}^{(2)}\right) \end{aligned}

Structure Reconstruction Decoder

用于判定图结构异常:RS=AA^\mathbf{R}_{S}=\mathbf{A}-\widehat{\mathbf{A}}

可以根据两个节点间是否存在边来计算A^\widehat{\mathbf{A}},类似于链路预测过程;所以添加了一个 link prediction layer:

p(A^i,j=1zi,zj)=sigmoid(zi,zjT)p\left(\widehat{\mathbf{A}}_{i, j}=1 \mid \mathbf{z}_{i}, \mathbf{z}_{j}\right)=\operatorname{sigmoid}\left(\mathbf{z}_{i}, \mathbf{z}_{j}^{\mathrm{T} }\right)

对于所有节点转化为矩阵的形式为:

A^=sigmoid(ZZT)\widehat{\mathbf{A} }=\operatorname{sigmoid}\left(\mathbf{Z Z}^{\mathrm{T}}\right)

Attribute Reconstruction Decoder

用于判定节点属性异常:RA=XX^\mathbf{R}_{A}=\mathbf{X}-\widehat{\mathbf{X} }

根据节点embedding重构;

X^=fRelu(Z,AW(3))\widehat{\mathbf{X}}=f_{R e l u}\left(\mathbf{Z}, \mathbf{A} \mid \mathbf{W}^{(3)}\right)

Anomaly detection

综上模型优化的目标函数是:

L=(1α)RS+αRA=(1α)AA^F2,+αXX^F2\begin{aligned} \mathcal{L} &=(1-\alpha) \mathbf{R}_{S}+\alpha \mathbf{R}_{A} \\\\ &=(1-\alpha)\|\mathbf{A}-\widehat{\mathbf{A} }\|_{F}^{2},+\alpha\|\mathbf{X}-\widehat{\mathbf{X} }\|_{F}^{2} \end{aligned}

模型训练收敛之后需要计算每个节点的异常分数,计算公式为

score(vi)=(1α)aa^i2+αxix^i2\operatorname{score}\left(\mathbf{v}_{i}\right)=(1-\alpha)\left\|\mathbf{a}-\widehat{\mathbf{a} }_{i}\right\|_{2}+\alpha\left\|\mathbf{x}_{i}-\widehat{\mathbf{x} }_{i}\right\|_{2}

Experiments

数据集

实验结果对比;

联系作者