Sequence Graph Embedding

Hi, I have a batch [[g, g, g], [g, g]], where g is the dgl heterogenous graph. I want to extract the embeddings using gat. The final result should be like [[emb, emb, emb],[emb, emb]], could you use dgl to implement it?

Hi @Data-Designer , GAT outputs embeddings of nodes after message passing. For graph embeddings, you need pooling operations over the nodes.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.