cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

There is no procedure with the name `gds.alpha.hits.stream` registered

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

1 ACCEPTED SOLUTION

andreperez
Graph Buddy

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.

View solution in original post

3 REPLIES 3

andreperez
Graph Buddy

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.

Hi @dirk.ceuppens

gds.alpha.hits.stream
This algorithm seems to be implemented in GDSs of 1.5 and above.

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