StanfordCoreNLP Python-指定注释器属性

时间:2019-05-30 03:47:49

标签: python stanford-nlp

我想知道如何指定通过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'

    }

这是我当前必须连接到我启动的服务器的代码。

0 个答案:

没有答案