Where is the implementation of the convolved signal matrix
hi, I cannot find the implementation of the convolved signal matrix as the following picture:
can u tell me?
@tkipf
actually, where is the calculation of the matrix D?

The normalization is carried out in
https://github.com/tkipf/pygcn/blob/4396e4db5b97c9e071516bc601c9b6693696c489/pygcn/utils.py#L56
-- function: normalize.
Note that this implementation uses a simpler row-wise normalization
D^{-1}A instead of D^{-1/2}AD^{-1/2}. Both perform similar in practice.
On Sun, Jan 27, 2019 at 2:38 PM hbsun2113 [email protected] wrote:
actually, where is the calculation of the matrix D? [image: image] https://user-images.githubusercontent.com/27994442/51801666-ee8c3a80-227b-11e9-9c57-247f0f5370c4.png
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/tkipf/pygcn/issues/30#issuecomment-457918748, or mute the thread https://github.com/notifications/unsubscribe-auth/AHAcYBmEeS8Tk-15Gr3o5yETV1uRLGEXks5vHavsgaJpZM4aUuIz .
i get it,thx