Unverified Commit 0dd500e3 authored by Liang Wang's avatar Liang Wang Committed by GitHub
Browse files

[BugFix] Remove redundant reference of networkx package in pagerank.py (#3888)


Co-authored-by: default avatarMinjie Wang <wmjlyjemaine@gmail.com>
parent d8375c10
......@@ -4,7 +4,7 @@ import dgl
import dgl.function as fn
N = 100
g = nx.nx.erdos_renyi_graph(N, 0.05)
g = nx.erdos_renyi_graph(N, 0.05)
g = dgl.DGLGraph(g)
DAMP = 0.85
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment