当试图运行gds算法时,它正在抛出错误。
CALL gds.alpha.graphSage.stream(
'persons',
{
nodePropertyNames: ['age', 'height', 'weight'],
aggregator: 'mean',
activationFunction: 'sigmoid',
embeddingSize: 3,
sampleSizes: [25, 10],
degreeAsProperty: true
}
)没有为此数据库实例注册名称
gds.alpha.graphSage.stream的过程。请确保正确拼写了过程名,并确保正确部署了该过程。
发布于 2021-01-05 12:13:32
现在看来,这个过程已经进入了测试版:https://neo4j.com/docs/graph-data-science/current/algorithms/graph-sage/#algorithms-embeddings-graph-sage-syntax。
应该是gds.beta.graphSage.stream。
https://stackoverflow.com/questions/65576867
复制相似问题