Hello DGL Community!
I am new to DGL and am following the RGCN tutorial here: https://docs.dgl.ai/en/0.4.x/tutorials/models/1_gnn/4_rgcn.html
The tutorial walks through the AIFB dataset, and I tried modifying the tutorial notebook to work with my own dataset. However, I am confused as to what the parameters for the model mean and am having a hard time figuring out what they are (e.g. num_rels, num_classes, labels).
I assumed that num_rels was the number of unique edge types, but when I look at the AIFB unique edge types versus data.num_rels, the numbers do not match. Also, I’m guessing that num_classes is the number of node classes?
My Jupyter notebook is in the link below and is completed to the best of my guessing, which runs, but it sigkills on my end without any error messages. I made the train, validation, and test batches very small (10, 5, 5) so I’m not sure why this is happening!
Help would be much appreciated!