使用Maven依赖安装Stanford CoreNLP:get

时间:2015-05-22 08:36:34

标签: java maven nlp

我尝试使用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

我想知道获取模型文件的命令。

1 个答案:

答案 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>

你有什么理由不能这样做吗?