Preventing Stanford Core NLP Server from outputting the text it receives

社会主义新天地 提交于 2019-12-05 07:27:52

问题


I am running a Stanford CoreNLP server:

java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9001 -timeout 50000

Whenever it receives some text, it outputs it in the shell it is running it. How to prevent this from happening?


It that matters, here is the code I use to pass data to Stanford Core NLP Server:

'''
From https://github.com/smilli/py-corenlp/blob/master/example.py
'''
from pycorenlp import StanfordCoreNLP
import pprint

if __name__ == '__main__':
    nlp = StanfordCoreNLP('http://localhost:9000')
    fp = open("long_text.txt")
    text = fp.read()
    output = nlp.annotate(text, properties={
        'annotators': 'tokenize,ssplit,pos,depparse,parse',
        'outputFormat': 'json'
    })
    pp = pprint.PrettyPrinter(indent=4)
    pp.pprint(output)

回答1:


There's currently not a way to do this, but you're the second person that's asked. So, it's now in the Github code, and will make it into the next release. For the future, you should be able to set the -quiet flag, and the server will not write to standard out.




回答2:


I asked the same question and can offer some kind of workaround. I am running the server at the moment in a virtual machine. In order to prevent the logging output for now I run it with 2&>1 >/dev/null pipe arguments:

java -mx6g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -prettyPrint false 2&>1 >/dev/null

This gives a considerable performance boost until we wait for 3.6.1.



来源:https://stackoverflow.com/questions/36780358/preventing-stanford-core-nlp-server-from-outputting-the-text-it-receives

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!