Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the sentiment tagging #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion stanford_corenlp_pywrapper/javasrc/corenlp/JsonPipeline.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;

import edu.stanford.nlp.sentiment.SentimentCoreAnnotations;
import edu.stanford.nlp.sentiment.SentimentCoreAnnotations.SentimentAnnotatedTree;
import edu.stanford.nlp.neural.rnn.RNNCoreAnnotations;
import edu.stanford.nlp.dcoref.CorefChain;
import edu.stanford.nlp.dcoref.CorefCoreAnnotations.CorefChainAnnotation;
import edu.stanford.nlp.ling.CoreAnnotations.CharacterOffsetBeginAnnotation;
Expand Down Expand Up @@ -88,6 +91,13 @@ static void addTokenAnno(Map<String,Object> sent_info, CoreMap sentence,
}
sent_info.put(keyname, (Object) tokenAnnos);
}

static void addSentimentTree(Map<String,Object> sent_info, CoreMap sentence) {
String[] sentimentText = { "Very Negative","Negative", "Neutral", "Positive", "Very Positive"};
// Tree tree = sentence.get(SentimentCoreAnnotations.AnnotatedTree.class);
int score = RNNCoreAnnotations.getPredictedClass(sentence.get(SentimentCoreAnnotations.SentimentAnnotatedTree.class));
sent_info.put("sentiment", sentimentText[score]);
}

static void addParseTree(Map<String,Object> sent_info, CoreMap sentence) {
sent_info.put("parse", sentence.get(TreeCoreAnnotations.TreeAnnotation.class).toString());
Expand Down Expand Up @@ -259,7 +269,9 @@ void addAnnoToSentenceObject(Map<String,Object> sent_info, CoreMap sentence, Str
case "regexner":
addTokenAnno(sent_info, sentence, "ner", NamedEntityTagAnnotation.class);
break;
case "sentiment": throw new RuntimeException("TODO");
case "sentiment":
addSentimentTree(sent_info,sentence);
break;
case "truecase": throw new RuntimeException("TODO");
case "parse":
addParseTree(sent_info,sentence);
Expand Down
Binary file modified stanford_corenlp_pywrapper/lib/corenlpwrapper.jar
Binary file not shown.