我運行一個Stanford CoreNLP服務器:從輸出文本防止斯坦福核心NLP服務器收到
java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9001 -timeout 50000
每當收到一些文本,它輸出它正在運行它的外殼。如何防止這種情況發生?
這是重要的,這裏是我使用將數據傳遞到斯坦福核心NLP服務器代碼:
'''
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)