D:\code\myworld\lib\site-packages\dgl\heterograph.py:92: DGLWarning: Recommend creating graphs by `dgl.graph(data)` instead of `dgl.DGLGraph(data)`. dgl_warning( Traceback (most recent call last): File "E:/403/myworld/GraphShow.py", line 35, in <module> g.add_edge(src, dst) AttributeError: 'DGLGraph' object has no attribute 'add_edge'
时间: 2024-02-03 10:12:23 浏览: 326
ArgParseInator-1.0.12-py2.py3-none-any.whl.zip
这个错误提示显示你使用了 `add_edge` 方法,但是 `DGLGraph` 对象并没有这个方法。可能是因为你的 DGL 版本更新了,在新版本中这个方法被移除了。建议使用 `add_edges` 方法来添加边。比如:
```
g.add_edges(src, dst)
```
另外,如果你要创建一个新的图,也可以使用 `dgl.graph` 函数来创建,它比 `DGLGraph(data)` 更为推荐。比如:
```
g = dgl.graph((src, dst))
```
阅读全文