This repository was archived by the owner on May 14, 2020. It is now read-only.

Description
Hello,
I setup graphify on an Amazon ec2 server and all seems to be working except I get an empty array when attempting to classify the example text. I have been playing around with it for hours now and can't seem to get it to work.. What am I doing wrong?
curl --user neo4j:PASSWORD -H "Content-Type: application/json" -d '{"label": ["Document classification"], "text": ["Documents may be classified according to their subjects or according to other attributes (such as document type, author, printing year etc.). In the rest of this article only subject classification is considered. There are two main philosophies of subject classification of documents: The content based approach and the request based approach."]}' http://localhost:7474/service/graphify/training
{"success":"true"}
Then:
sudo curl --user neo4j:PASSWORD -H "Content-Type: application/json" -d '{"text": "A document is a written or drawn representation of thoughts. Originating from the Latin Documentum meaning lesson - the verb means to teach, and is pronounced similarly, in the past it was usually used as a term for a written proof used as evidence."}' http://localhost:7474/service/graphify/classify
{"classes":[]}
Thank you!
-Dan