如果本文帮助到了你,欢迎[点赞、收藏、关注]哦~
目录
错误复现
原因分析
解决方法
错误复现
import dgl
dataset = dgl.data.CoraGraphDataset()
graph = dataset[0]
graph.adjacency_matrix()
原因分析
DGL与PyTorch的版本不匹配。
解决方法
卸载并重装DGL或PyTorch:
pip uninstall dgl dglgo -y
pip install dgl -f https://data.dgl.ai/wheels/torch-2.2/cu118/repo.html