-
Notifications
You must be signed in to change notification settings - Fork 466
Closed
Labels
Description
import graphscope
from graphscope.dataset import load_p2p_network
sess = graphscope.session(cluster_type="hosts", mode="eager")
g = load_p2p_network(sess)
pg = g.project(vertices={"host": ["id"]}, edges={"connect": ["dist"]})
c = graphscope.hits(pg, tolerance=0.01, max_round=10, normalized=True)
sess.close()
必须要有dist属性吗?
Reactions are currently unavailable