2015-09-04 83 views
0

通过maven提供无壳模型吗?如果是这样,怎么样?他们只是英文吗?我尝试了各种选择,包括:通过maven提供斯坦福大学NLP无壳模型

<dependency> 
    <groupId>edu.stanford.nlp</groupId> 
    <artifactId>stanford-corenlp</artifactId> 
    <version>${corenlp.version}</version> 
</dependency> 
<dependency> 
    <groupId>edu.stanford.nlp</groupId> 
    <artifactId>stanford-corenlp</artifactId> 
    <version>${corenlp.version}</version> 
    <classifier>models</classifier> 
</dependency> 
<dependency> 
    <groupId>edu.stanford.nlp</groupId> 
    <artifactId>stanford-corenlp</artifactId> 
    <version>${corenlp.version}</version> 
    <classifier>models-caseless</classifier> 
</dependency> 

谢谢。

回答

1

不幸的是,目前这种情况下的模型并不在Maven中。我会记下你的请求,并且会看看我们是否可以将无情模型引入未来的Maven发行版中。

+0

好的,谢谢。 – Cuthalion

+1

对于3.6.0,如果您将分类器设置为“models-english”,您将获得英文模型jar,其中包含无案模型。警告:这是一个大的下载! – StanfordNLPHelp