ml-models
ml-models copied to clipboard
Machine Learning Procedures and Functions for Neo4j
We are considering using ml-models on Neo4j itself, instead of loading data into GraphX, for our graph node embedding implementation. I noticed that the code base has not been update...
Hello! I am trying to run the example in: https://tbgraph.wordpress.com/2018/10/17/feature-extraction-on-a-peer-to-peer-network-with-deepgl-embedding-and-neo4j/ This example uses the Gnutella [dataset](http://snap.stanford.edu/data/p2p-Gnutella09.html). At some point, the DeepGL algorithm is called: > CALL embedding.deepgl("Host","CONNECTION", { nodeFeatures: ['pagerank'],...
Hi, I try to figure out how to properly set the number of desired features with embedding.deepgl algorithms. Currently, my setup goes as follows: ``` CALL embedding.deepgl( null, null, {...
When compiling the library from source I get the following three errors: ``` Failed tests: shouldOnlyKeepFeaturesThatAddSomethingUnique(embedding.PruningTest): expected:
using version 1.0.2 and running this cypher code: CALL embedding.deepgl("Address","PAYS", { nodeFeatures: ['pagerank'], iterations: 2 }) This error occurs >> Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure `embedding.deepgl`: Caused by: java.lang.NoSuchMethodError: org.neo4j.graphalgo.core.IdMap.buildMappedIds()V...
When copying the 3rd release .jar file to plugins folder and setting the the config: dbms.security.procedures.whitelist=regression.*, embedding.* dbms.security.procedures.unrestricted=regression.*, embedding.* (running on neo4j 3.5) The procedures embedding.deepWalk and embedding.deepgl cannot be...
I downloaded `neo4j-ml-models-1.0.1.jar ` file and copied it into the `plugin` directory of my neo4j-desktop project's database, when starting the database, I get the following error in my log: ```...
Load data. `:play movies` Run algorithm: `CALL embedding.deepgl("Person" ,null)` I get an error: >Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure `embedding.deepgl`: Caused by: org.nd4j.linalg.exception.ND4JIllegalStateException: Invalid shape: Requested INDArray shape [0, 54] contains...
running on machine with 16gb RAM and using dataset with 8k nodes and 26k rels : https://snap.stanford.edu/data/p2p-Gnutella09.html import: ``` LOAD CSV FROM "file:///p2p-Gnutella09.txt" as row fieldterminator ' ' WITH row...
Hi I have downloaded the latest jar file and updated noe4j.config but I am still getting the following error when calling embedding.deepgl...how can I fix it? Neo.ClientError.Procedure.ProcedureRegistrationFailed: embedding.deepgl is unavailable...