About node feature in the guidance graph
Closed this issue · 4 comments
Hi,
I read your paper and did not find the text about initialized node features in the guidance graph (maybe I missed the relevant text..).
In my understanding, each node in that graph is a gene (atac-seq peak region, or methylation region), which is irrelevant to cells. I mean, these nodes can be defined without single-cell data. Is that right? I am not sure whether my understanding is right or not.
Thanks
Yu
Hi Yu! Thanks for your interest in GLUE. You are right about the identity of the nodes, but the graph encoder in GLUE does not use node features, the input of graph convolution is learnable node embeddings (vrepr
).
You may also interpret it as one-hot node features times a linear transformation
Hope that clarifies. Please let me know if there were further questions!
Hi Jeff,
Thanks for your reply. GLUE is a great research work!
I still have a question: the learnable node embeddings (vrepr,
BR
Yu
While the embeddings are initialized as zeros, they will be updated during training as guided by the graph and data decoders. They will definitely be non-zero after the model has been trained.
Hi Jeff,
I see. Thanks!
The learnable node embeddings (torch parameters) have gradients after backforward.
BR
Yu