本文介绍了如何让Stanford CoreNLP使用您创建的训练模型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I just created a training model for stanfordCoreNLP, so I have a bunch of files that look like this:

现在,如何告诉CoreNLP使用我创建的模型,而不是coreNLP随附的模型?是我在命令行中传递的东西还是我的Java代码中的东西,例如:

Now, how do I tell CoreNLP to use the model I created and not the models that come with coreNLP? Is it something I pass in the command line or something in my java code like:

props.put("sentiment.model");

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

I noticed there's a jar file in my coreNLP library called stanford-corenlp-3.5.1-models.jar. Does this jar file have anything to do with what I want to do?

谢谢

推荐答案

在Java中:

props.put("sentiment.model", "path/to/model");

在命令行上:

-sentiment.model path/to/model

这篇关于如何让Stanford CoreNLP使用您创建的训练模型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 17:02