yuns
Spectral Methods 본문
반응형
여기서 convolution operation인 합성곱을 (gθ ★ x) 와 같은 식으로 나타낸다.
5.1.1 Spectral Network
- convolution operation는 Fourier domain에서 정의된다.
- by computing the eigendecomposition of the graph Laplacian.
- a signal x∈RN( a scalar for each node)와 filter gθ=diga(θ)의 곱에 의해 나타낸다. gθ★x=Ugθ(Λ)UTx
- U: the matrix of eigenvectors of the normalized graph Laplacian L=IN−D−12AD−12=UΛUT.
- L=I−A의 식에서 변형된 꼴인데, D−12AD−12은 정규화를 위하여 계산이 된다.
- 한계: Laplacian Matrix의 eigen vectors의 의존성 Backpropagation을 위한 시간(O(n2)) + eigen decomposition 위한 시간 O(n3)
5.1.2 Chebnet
- gθ(Λ)이 truncated expansion in terms of Chebyshev polynomials인 Tk(x)에 의해서 근사될 수 있다는 특징을 이용 gθ★x≈K∑k=0θkTk(˜L)x
5.1.3 GCN
- limit the layer-wise convolution operation to K=1 to alleviate the problem of overfitting on local neighborhood structures for graphs with very wide node degree distributions gθ′★x≈θ′0x+θ′1(L−IN)x=θ′0x−θ′1D−12AD−12
- θ=θ′0=−θ′1에 의하여 다음과 같은 식으로 나타낼 수 있다.gθ′★x≈θ(IN+D−12AD−12)x
반응형
'graph deep learning > #5 Graph Convolutional Networks' 카테고리의 다른 글
5.2 Spatial Methods (0) | 2020.11.13 |
---|---|
Introduction (0) | 2020.11.13 |