我尝试使用Maven安装Stanford CoreNLP(3.4.1)。 Maven版本是3.3.3
我可以使用dependency:get
命令下载jar文件,如
$ mvn dependency:get -DrepoUrl=http://nlp.stanford.edu/software/stanford-corenlp-2014-08-27.zip -Dartifact=edu.stanford.nlp:stanford-corenlp:3.4.1
我们在stanford-corenlp-3.4.1.jar
中获得~/.m2/repository/edu/stanford/nlp/stanford-corenlp/3.4.1
但是,我们没有获得模型文件。
我怎样才能获得stanford-corenlp-3.4.1-models.jar
?
我想知道获取模型文件的命令。
答案 0 :(得分:0)
从documentation for downloading Stanford CoreNLP,你可以直接将两个依赖项添加到你的Maven POM中:
<project>
...
<dependencies>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.5.2</version>
<classifier>models</classifier>
</dependency>
</dependencies>
</project>
你有什么理由不能这样做吗?