X-lab2017 / openrank-neo4j-gds

Neo4j plugin for OpenRank with GDS
GNU General Public License v3.0
5 stars 2 forks source link

OpenRank for Neo4j GDS

This repository is an OpenRank Neo4j plugin implementation with Neo4j GDS library.

Build & Test

You may use Gradle 8 to build and test the project.

Run gradle test to run unit tests and ./gradlew clean build to build the project, you will find the openrank-neo4j-gds.jar after build under ./build/libs.

Compatibility

This plugin uses Neo4j Community Edition 5.6.0 and Neo4j GDS(Graph Data Science) 2.4.2, feel free to build your own plugin to change the versions under build.gradle.

Usage

This plugin uses Pregel framework provided by GDS so it only contains the computation part of the OpenRank, you can run the algorithm after build the in-memory graph like this:

CALL xlab.pregel.openrank.write('graphName',{initValueProperty:'initValue',retentionFactorProperty:'retentionFactor',relationshipWeightProperty:'weight',tolerance:0.001,maxIterations:40,suffix:'_suffix'});

License

This repository is licensed under the GNU Public License version 3.0.