如何让Stanford CoreNLP使用您创建的培训模型?

时间:2015-11-15 21:00:34

标签: java model stanford-nlp sentiment-analysis

我刚刚为stanfordCoreNLP创建了一个训练模型,所以我有一堆看起来像这样的文件:

enter image description here

现在,我如何告诉CoreNLP使用我创建的模型而不是coreNLP附带的模型?这是我在命令行中传递的内容还是我的java代码中的内容,如:

props.put("sentiment.model");

我注意到我的coreNLP库中有一个名为stanford-corenlp-3.5.1-models.jar的jar文件。这个jar文件与我想做的事情有什么关系吗?

谢谢

1 个答案:

答案 0 :(得分:1)

Java中的

props.put("sentiment.model", "path/to/model");
命令行上的

-sentiment.model path/to/model