我刚刚为stanfordCoreNLP创建了一个训练模型,所以我有一堆看起来像这样的文件:
现在,我如何告诉CoreNLP使用我创建的模型而不是coreNLP附带的模型?这是我在命令行中传递的内容还是我的java代码中的内容,如:
props.put("sentiment.model");
我注意到我的coreNLP库中有一个名为stanford-corenlp-3.5.1-models.jar的jar文件。这个jar文件与我想做的事情有什么关系吗?
谢谢
答案 0 :(得分:1)
:
props.put("sentiment.model", "path/to/model");
命令行上的:
-sentiment.model path/to/model