2016-04-23 2 views
0

Я пытаюсь получить сентиментальную оценку для живых твитов, используя Stanford Core NLP. В настоящее время я получаю твиты в реальном времени. Но когда я подпитываю его в программе NLP Stanford Core, я получаю сообщение об ошибке.SentimentCoreAnnotations.AnnotatedTree не может быть разрешен для типа

import edu.stanford.nlp.ling.CoreAnnotations; 
import edu.stanford.nlp.neural.rnn.RNNCoreAnnotations; 
import edu.stanford.nlp.pipeline.Annotation; 
import edu.stanford.nlp.pipeline.StanfordCoreNLP; 
import edu.stanford.nlp.sentiment.SentimentCoreAnnotations; 
import edu.stanford.nlp.trees.Tree; 
import edu.stanford.nlp.util.CoreMap; 

public class NLP { 
    static StanfordCoreNLP pipeline; 

    public static void init() { 
     pipeline = new StanfordCoreNLP("MyPropFile.properties"); 
    } 

    public static int findSentiment(String tweet) { 

     int mainSentiment = 0; 
     if (tweet != null && tweet.length() > 0) { 
      int longest = 0; 
      Annotation annotation = pipeline.process(tweet); 
      for (CoreMap sentence : annotation 
        .get(CoreAnnotations.SentencesAnnotation.class)) { 
       Tree tree = sentence 
         .get(SentimentCoreAnnotations.AnnotatedTree.class); 
       int sentiment = RNNCoreAnnotations.getPredictedClass(tree); 
       String partText = sentence.toString(); 
       if (partText.length() > longest) { 
        mainSentiment = sentiment; 
        longest = partText.length(); 
       } 

      } 
     } 
     return mainSentiment; 
    } 
} 

Я звоню в эту функцию init() и findSentiment() из-за пределов класса NLP.

NLP.init(); 
System.out.println(status.getText() + " : " + NLP.findSentiment(status.getText())); 

Моя ошибка: SentimentCoreAnnotations.AnnotatedTree не может быть разрешен к типу

ответ

3

Попробуйте изменить

Tree tree = sentence.get(SentimentCoreAnnotations.AnnotatedTree.class); 

в

Tree tree = sentence.get(SentimentCoreAnnotations.SentimentAnnotatedTree.class);