β09-27-2021 07:15 AM
I'am using Neo4j Desktop Version 1.4.8 - DB 4.2.1 - on Mac with Graph Data Science Library installed (1.4.1).
I am trying to use the HITS algorithm similar to the example mentioned here: HITS - Neo4j Graph Data Science
CALL gds.alpha.hits.stream('LinkGraph', {hitsIterations: 20})
YIELD nodeId, values
RETURN gds.util.asNode(nodeId).address AS URL, values.auth AS auth, values.hub as hub
ORDER BY URL ASC
I get the message 'There is no procedure with the name gds.alpha.hits.stream
registered for this database instance.' The HITS doesn't appear either when calling
CALL gds.list()
Is this no longer supported - or moved to another location?
Thanks,
Dirk
Solved! Go to Solution.
β09-27-2021 11:50 AM
The reference guide you're using refers to version 1.7
This is the manual for the version 1.4.
Try to upgrade your GDS version to the newest one.
β09-27-2021 11:50 AM
The reference guide you're using refers to version 1.7
This is the manual for the version 1.4.
Try to upgrade your GDS version to the newest one.
β09-27-2021 01:07 PM
gds.alpha.hits.stream
This algorithm seems to be implemented in GDSs of 1.5 and above.
β09-27-2021 02:19 PM
Hi Andre, Koji
Thanks - I was assuming by choosing the default dbms when starting a project I would get/use the latest version, which clearly is not the case (I just started using Neo4j).
I'll try to upgrade.
Really appreciate your help!
Dirk