我想知道如何指定通过StanfordCoreNLP Python库使用的注释器的属性?
例如,我想指示coref注释器使用统计数据包。在命令行版本中,我可以简单地键入“ -coref.algorithm statistics”。我该如何使用python库做类似的事情?
def __init__(self, host='http://localhost', port=9000):
self.nlp = StanfordCoreNLP(host, port=port,
timeout=30000) # , quiet=False, logging_level=logging.DEBUG)
self.props = {
'annotators': 'tokenize,ssplit,pos,lemma,ner,parse,coref,quote',
'pipelineLanguage': 'en',
'outputFormat': 'json'
}
这是我当前必须连接到我启动的服务器的代码。