gpt4 book ai didi

java - 构建 Stanford CoreNLP 时出错

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:26:53 24 4
gpt4 key购买 nike

当我自己构建 Core-NLP 时,我收到以下消息:

incompatible types; no instance(s) of type variable(s) VALUE exist so that VALUE conforms to Map<Integer,String>

违规行:

Map<Integer,String> roleMap = ((CoreLabel)t1.label()).get(CoreAnnotations.CoNLLSRLAnnotation.class);

违规功能:

  @SuppressWarnings("unchecked")
public <VALUE, KEY extends Key<CoreMap, VALUE>>
VALUE get(Class<KEY> key) {
for (int i = size; i > 0; ) {
if (keys[--i] == key) {
return (VALUE)values[i];
}
}
return null;
}

我真的不知道如何解决这个问题。我正在尝试使用 Maven 构建 CoreNLP,以便在我的项目中轻松使用它。想法?

最佳答案

您从哪里获取源代码?

我构建 from the master branch on their github repository 没问题.我使用的是 java 1.8,这是他们的 maven pom 所必需的。

关于java - 构建 Stanford CoreNLP 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7863830/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com