gpt4 book ai didi

java - Stanford CoreNLP 给出 NullPointerException

转载 作者:行者123 更新时间:2023-11-29 05:29:04 25 4
gpt4 key购买 nike

我正在努力了解 Stanford CoreNLP API。我希望使用以下代码对一个简单的句子进行标记化:

    Properties props = new Properties();
props.put("annotators", "tokenize");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);

// read some text in the text variable
String text = "I wish this code would run.";

// create an empty Annotation just with the given text
Annotation document = new Annotation(text);

// run all Annotators on this text
pipeline.annotate(document);

// these are all the sentences in this document
// a CoreMap is essentially a Map that uses class objects as keys and has values with custom types
List<CoreMap> sentences = document.get(SentencesAnnotation.class);

for(CoreMap sentence: sentences) {
// traversing the words in the current sentence
// a CoreLabel is a CoreMap with additional token-specific methods
for (CoreLabel token: sentence.get(TokensAnnotation.class)) {
// this is the text of the token
String word = token.get(TextAnnotation.class);
// this is the POS tag of the token
String pos = token.get(PartOfSpeechAnnotation.class);
// this is the NER label of the token
String ne = token.get(NamedEntityTagAnnotation.class);
}

// this is the parse tree of the current sentence
Tree tree = sentence.get(TreeAnnotation.class);

// this is the Stanford dependency graph of the current sentence
SemanticGraph dependencies = sentence.get(CollapsedCCProcessedDependenciesAnnotation.class);
}

// This is the coreference link graph
// Each chain stores a set of mentions that link to each other,
// along with a method for getting the most representative mention
// Both sentence and token offsets start at 1!
Map<Integer, CorefChain> graph = document.get(CorefChainAnnotation.class);

这是从 Stanford NLP 网站本身摘录的,所以我希望它开箱即用。遗憾的是它没有,因为它在以下位置给了我一个 NullPointerException:

for(CoreMap sentence: sentences) {...

最佳答案

您从 Stanford NLP 网站获取的代码对文本变量执行所有注释。为了执行特定的注释,您必须相应地更改代码。

要执行标记化,这就足够了

Properties props = new Properties();
props.put("annotators", "tokenize");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);

Annotation document = new Annotation(text);
pipeline.annotate(document);
for (CoreLabel token: document.get(TokensAnnotation.class)) {
String word = token.get(TextAnnotation.class);
}

如果注释器不包含 Sentence Splitter("ssplit"),这行代码将返回 Null

document.get(SentencesAnnotation.class);

因此您遇到了 NullPointerException。

关于java - Stanford CoreNLP 给出 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21742186/

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