Hi,
I’ m following this dgl docs where has a function named NodeDataLoader()
, but actually in my dgl version 1.0.0
, there is no such function.
I only have DataLoader
, DistDataLoader
, DistNodeDataLoader
. I wonder which one is corresponding to NodeDataLoader
in the docs?
I think DataLoader
is what I want, but I am not sure.
And another question is:
If I have a feature lists which contain the features of several type nodes, and the feature dimensions of each node type are different, does it match the batch training in dgl
?