Hello
Suppose we are doing a link prediction task in DGL. As far as I checked, all the link prediction datasets provided by DGL consider one snapshot of the graph (1 sample of the graph).
Now let’s say we have many samples for each feature. One way to consider this is to add another dimension to the node’s feature matrix and have a new dimension of (N, B, d), where N is the number of nodes, B is the number of samples for each feature, and d is the number of features.
Question#1: Is there any function in DGL to handle this type of matrices as the input of GNN?
Question#2: Is there any other way in DGL, except the way I mentioned, to consider many samples for a graph of a same structure?
Thank you