yuns

Spectral Methods 본문

graph deep learning/#5 Graph Convolutional Networks

Spectral Methods

yuuuun 2020. 11. 13. 03:44
반응형

여기서 convolution operation인 합성곱을 (gθ ★ x) 와 같은 식으로 나타낸다.

5.1.1 Spectral Network

  • convolution operation는 Fourier domain에서 정의된다.
    • by computing the eigendecomposition of the graph Laplacian.
    • a signal xRN( a scalar for each node)와 filter gθ=diga(θ)의 곱에 의해 나타낸다. gθx=Ugθ(Λ)UTx
    • U: the matrix of eigenvectors of the normalized graph Laplacian L=IND12AD12=UΛUT
      • L=IA의 식에서 변형된 꼴인데, D12AD12은 정규화를 위하여 계산이 된다.
  • 한계: 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θxKk=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(LIN)x=θ0xθ1D12AD12
  • θ=θ0=θ1에 의하여 다음과 같은 식으로 나타낼 수 있다.gθxθ(IN+D12AD12)x
  •  
반응형

'graph deep learning > #5 Graph Convolutional Networks' 카테고리의 다른 글

5.2 Spatial Methods  (0) 2020.11.13
Introduction  (0) 2020.11.13
Comments