Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/maven/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Stanford CoreNLP给出了NullPointerException_Java_Stanford Nlp - Fatal编程技术网

Java Stanford CoreNLP给出了NullPointerException

Java Stanford CoreNLP给出了NullPointerException,java,stanford-nlp,Java,Stanford Nlp,我正试图了解斯坦福大学CorenlpAPI。我希望使用以下代码将一个简单的句子标记化: Properties props = new Properties(); props.put("annotators", "tokenize"); StanfordCoreNLP pipeline = new StanfordCoreNLP(props); // read some text in the text variable String text = "I

我正试图了解斯坦福大学CorenlpAPI。我希望使用以下代码将一个简单的句子标记化:

    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);

此行检索句子注释

List<CoreMap> sentences = document.get(SentencesAnnotation.class);
列出句子=document.get(SentencesAnnotation.class);
但是您的管道只包含标记器,而不包含句子拆分器

更改以下行:

props.put("annotators", "tokenize, ssplit"); // add sentence splitter props.put(“注释器”、“标记化、ssplit”);//添加分句器
您从斯坦福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);
}
如果注释器不包含句子拆分器(“ssplit”),这行代码将返回Null


因此,您遇到了NullPointerException。

或者如果您只想对令牌流进行迭代,那么您可以使用:
for(CoreLabel-token:document.get(TokensAnnotation.class)){…}
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);
}
document.get(SentencesAnnotation.class);