Coder Social home page Coder Social logo

Comments (2)

cszhangzhen avatar cszhangzhen commented on June 5, 2024

Hi, Thanks for your interest in our work!

Here are my answers:

A1, We remove the adding self-loops operation in our new-defined GCN module, since the structure learning module has already taken self-loops into consideration. The original GCNConv is used only in the first layer and we add self-loops manually like GCN paper described.

A2, Yes, you are right. We actually use the symmetric version of (i.e. the I - \tilde{D}^{-1/2}\tilde{A}\tilde{D}^{-1/2}) in NodeInformationScore.

However, your analysis is not correct.

The edge_weight after add_remaining_self_loops will have self-loops, thus the final result of the norm function is I - D^{-1/2}(A+I)D^{-1/2} = - D^{-1/2}AD^{-1/2} instead of the I - D^{-1/2}AD^{-1/2}.

After structure learning module, it has automatically learned the self-loops, i.e., \tilde{A} ≠ A + I and \tilde{D}_{ii} = \sum_{i} \tilde{A}_{ij}, and each node has different self-loop values. Therefore, - D^{-1/2}(A+I)D^{-1/2} ≠ - D^{-1/2}AD^{-1/2}. Also, note that for edge_weight, we use add_remaining_self_loops to fill zeros instead of ones, which make the edge_index be consistent with the learned structure information.

from hgp-sl.

lygztq avatar lygztq commented on June 5, 2024

Thanks! Now I understand how your NodeInformationScore works.

from hgp-sl.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.