You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run
java -Xmx1g -jar server/target/stanbol-stanfordnlp-server-1.1.0-SNAPSHOT-jar-with-dependencies.jar -p 8082
I get http://pastebin.com/PKqve3wX
When I run
java -Xmx1g -jar server-int/target/stanbol-stanfordnlp-server-int-1.1.0-SNAPSHOT-jar-with-dependencies.jar -p 8082
Also once the server is up, what is the command to query it? I need to parse this sentence "John gives a bike to james" using stanford parser http://nlp.stanford.edu:8080/parser/index.jsp
The text was updated successfully, but these errors were encountered:
When you start the server the first time it will create a "./config" directory. In case of the "stanbol-stanfordnlp-server" server this will contain the "en.pipeline" file.
The first error suggests that this directory also contains a "ar.pipeline" file. However the "stanbol-stanfordnlp-server" can not support languages that do require segmentors as the required classes are not packed. So if there is a "ar.pipeline" or "zh.pipeline" file in this directory please delete it (or use the "stanbol-stanfordnlp-server-int" instead).
The 2nd error is simple because the international server requires more as 1GByte of RAM. If I remember correctly the absolute minimum is about 1.6GByte, but I would recommend to run it with at least "-Xmx1g". Its easy to know if the server needs more memory. Just search in the log for a "java.lang.OutOfMemoryError".
When I run
java -Xmx1g -jar server/target/stanbol-stanfordnlp-server-1.1.0-SNAPSHOT-jar-with-dependencies.jar -p 8082
I get
http://pastebin.com/PKqve3wX
When I run
java -Xmx1g -jar server-int/target/stanbol-stanfordnlp-server-int-1.1.0-SNAPSHOT-jar-with-dependencies.jar -p 8082
I get
http://pastebin.com/f8fbcLN5
Also once the server is up, what is the command to query it? I need to parse this sentence "John gives a bike to james" using stanford parser http://nlp.stanford.edu:8080/parser/index.jsp
The text was updated successfully, but these errors were encountered: