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
I want to do some Named Entity Recognition on several documents using a CoreNLP server that I launch this way: java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer
Basic sentences like "The quick brown fox jumps over the lazy dog" works well on the test page at http://localhost:9000/ but as soon as special characters are involved, like the "é" in "I went to a café yesterday", I get the error:
I want to do some Named Entity Recognition on several documents using a CoreNLP server that I launch this way:
java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer
Basic sentences like "The quick brown fox jumps over the lazy dog" works well on the test page at http://localhost:9000/ but as soon as special characters are involved, like the "é" in "I went to a café yesterday", I get the error:
{"sentences":[{"index":0,"parse":"SENTENCE_SKIPPED_OR_UNPARSABLE","basic-dependencies": ...
Note that this sentence works well on [http://corenlp.run/].
I tried
-strict
and-encode utf-8
or addingparse
in the annotators with no success.I am using v 3.6.0 downloaded there: [http://stanfordnlp.github.io/CoreNLP/download.html]
Trying to call the server with corenlp_pywrap as python wrapper returns the following error:
It looks like the problem comes from how the request sent to the server is processed.
The text was updated successfully, but these errors were encountered: