-
Hi, I have a dataset which is representing the computational graph of DNN models. I am using HeteroData(). As can be seen, the features of each node type are different from the other ones. I want to add a node and based on its connections, predict its type (node classification). Here type is the operator type (Add, Conv, etc.). I am not sure which network structure I should use. I appreciate any suggestions, thoughts, etc. I have tried HeteroGNN. But, since the features are different for each node type, I am not sure how I can implement it correctly. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
What do you mean by |
Beta Was this translation helpful? Give feedback.
What do you mean by
But, since the features are different for each node type
. Do you mean the feature dimension is different for each node type? If so heterogenous GNNs should be able to handle node types with different feature dimension.Check out this example.