Hi,
I try to run train_sampling_unsupervised.py in the Graphsage model.
However, there is an error ‘AttributeError: module ‘dgl’ has no attribute ‘dataloading’’.
Do you know how to fix it?
Thanks!
Hi,
I try to run train_sampling_unsupervised.py in the Graphsage model.
However, there is an error ‘AttributeError: module ‘dgl’ has no attribute ‘dataloading’’.
Do you know how to fix it?
Thanks!
Are you using the latest version of DGL, i.e. 0.5.2? You can check the version with
import dgl
print(dgl.__version__)
There is a chance that you have multiple versions of DGL installed. In that case you need to first install the old version before installing a new version.
Hi, thank you. It’s solved by using the latest version of DGL.