Hello,
I am trying to use Stanford NLP framework along with neo4j for a project. I want to know how can I use a input from python to be stored into a node in neo4j graph database so then I could use NLP to this node and start building a knowledge gra...
I am programming in python and I want that every input that I get from python programming to store to neo4j graph database. I am using py2neo to connect neo4j to python. And then I want to use stanford-nlp that neo4j offers to make keyword extraction...
I have a node labeled as Price and I want to retrieve the prices that are lower than an average over these prices. I tried the following cypher query but it did not work out. Can anyone help me out with this? PS: even if you do it with one match it g...
I copied the both jar files inside the plugin folder on neo4j and also changed the conf file as it was suggested on the github: https://github.com/graphaware/neo4j-uuid. Now nothing is generated as a uuid while I create my graph using my data. How c...
Hello, can anyone help me with some sources to get to know how to import data from csv files into neo4j using python, flask and also the py2neo. I dont want to include the raw cypher inside the python to import data due to security??
Well yes, I configured the graphaware extension and now it is working fine because I want to things moving in the database so a made a little change. Now it is fine, but is there any way to change the method set in order to make in dynamic?? Because ...
Well yes, I already integrated Stanford NLP in my neo4j database. Now I just want to use the text that I will get from python input and store it to a node. Then from this node I will use NLP for keyword extraction or other things.
Well I just am new to neo4j and I might not know all the possible ways to retrieve information from the database. The problem is that I just need to get the products that have a cheaper price than average and I thought about this way. If you have any...
Yes. This is the model I have defined for the data that I have:
(p:Price)<-[:COSTS]-(s:Service)-[:IS_PROVIDED]->(pr:Provider)-[:OFFERS_PRODUCT]->(prod:Product). At the price node I have monthly price, yearly price and currency. Now what I want to do...
@michael.hunger Well this is an idea that I also thought about but is not working. I just want to retrieve a list of products that have the price lower than the average. So I am defining some rules in my database, using python coding and I have defin...