Hi, I'm trying to do the Building Neo4j Applications with Python developer tutorial and getting stuck with the setup. Specifically with running Flask. When I ran it the first time I didn't have Flask_JWT installed and had to do that manually - using ...
Hi,I'm trying to project a graph in order to perform a Label Propagation LPA community detection algorithm and am coming up with this error:
Failed to invoke procedure `gds.graph.project.cypher`: Caused by: java.lang.IllegalArgumentException: Failed ...
Hi all,
I'm trying to migrate and upgrade my graph to the latest version of Neo4j and make use of new features and GDS algorithms. The old LPA community detection query was as follows:
CALL algo.labelPropagation.stream(
'MATCH (p:Publication) RETUR...
Hi,
I'm getting the following error when trying to run a python script that is connected to my graph:
Traceback (most recent call last):
File "/Users/Python scripts/python/cdpipe.py", line 46, in <module>
result = session.run(query)
NameError: ...
Quick question about running python scripts that connect to my Neo4j dbms and query my graph.
Is there a best practice for the location for storing relevant python scripts ?
Should they be in my general project folder for what I'm working on or in th...
@Cobra cool. I can see how this would help with identifying the connections - one thought, will it affect the LPA (or other algorithms) if there are already new connections ? I'm essentially first trying to replicate what worked on the old GA version...
Hi @Cobra , sure here is the data model:
The sub-graph - I'm not entirely sure(!?). What I'm trying to do is create a graph projection of Publication and Document nodes that contain the same keyword, then perform community detection with LPA (Label ...