| package edu.stanford.nlp.pipeline.demo; |
|
|
| import java.io.*; |
| import java.util.*; |
|
|
| import edu.stanford.nlp.hcoref.data.CorefChain; |
| import edu.stanford.nlp.hcoref.CorefCoreAnnotations; |
| import edu.stanford.nlp.io.*; |
| import edu.stanford.nlp.ling.*; |
| import edu.stanford.nlp.pipeline.*; |
| import edu.stanford.nlp.semgraph.SemanticGraph; |
| import edu.stanford.nlp.semgraph.SemanticGraphCoreAnnotations; |
| import edu.stanford.nlp.sentiment.SentimentCoreAnnotations; |
| import edu.stanford.nlp.trees.*; |
| import edu.stanford.nlp.util.*; |
|
|
| |
| public class StanfordCoreNlpDemo { |
|
|
| |
| public static void main(String[] args) throws IOException { |
| |
| PrintWriter out; |
| if (args.length > 1) { |
| out = new PrintWriter(args[1]); |
| } else { |
| out = new PrintWriter(System.out); |
| } |
| PrintWriter xmlOut = null; |
| if (args.length > 2) { |
| xmlOut = new PrintWriter(args[2]); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| Properties props = new Properties(); |
| props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref, sentiment"); |
|
|
| StanfordCoreNLP pipeline = new StanfordCoreNLP(props); |
|
|
| |
| Annotation annotation; |
| if (args.length > 0) { |
| annotation = new Annotation(IOUtils.slurpFileNoExceptions(args[0])); |
| } else { |
| annotation = new Annotation("Kosgi Santosh sent an email to Stanford University. He didn't get a reply."); |
| } |
|
|
| |
| pipeline.annotate(annotation); |
|
|
| |
| pipeline.prettyPrint(annotation, out); |
| if (xmlOut != null) { |
| pipeline.xmlPrint(annotation, xmlOut); |
| } |
|
|
| |
| |
| |
| out.println(); |
| out.println("The top level annotation"); |
| out.println(annotation.toShorterString()); |
| out.println(); |
|
|
| |
| |
| |
| List<CoreMap> sentences = annotation.get(CoreAnnotations.SentencesAnnotation.class); |
| if (sentences != null && ! sentences.isEmpty()) { |
| CoreMap sentence = sentences.get(0); |
| out.println("The keys of the first sentence's CoreMap are:"); |
| out.println(sentence.keySet()); |
| out.println(); |
| out.println("The first sentence is:"); |
| out.println(sentence.toShorterString()); |
| out.println(); |
| out.println("The first sentence tokens are:"); |
| for (CoreMap token : sentence.get(CoreAnnotations.TokensAnnotation.class)) { |
| out.println(token.toShorterString()); |
| } |
| Tree tree = sentence.get(TreeCoreAnnotations.TreeAnnotation.class); |
| out.println(); |
| out.println("The first sentence parse tree is:"); |
| tree.pennPrint(out); |
| out.println(); |
| out.println("The first sentence basic dependencies are:"); |
| out.println(sentence.get(SemanticGraphCoreAnnotations.BasicDependenciesAnnotation.class).toString(SemanticGraph.OutputFormat.LIST)); |
| out.println("The first sentence collapsed, CC-processed dependencies are:"); |
| SemanticGraph graph = sentence.get(SemanticGraphCoreAnnotations.CollapsedCCProcessedDependenciesAnnotation.class); |
| out.println(graph.toString(SemanticGraph.OutputFormat.LIST)); |
|
|
| |
| |
| |
| |
| out.println("Coreference information"); |
| Map<Integer, CorefChain> corefChains = |
| annotation.get(CorefCoreAnnotations.CorefChainAnnotation.class); |
| if (corefChains == null) { return; } |
| for (Map.Entry<Integer,CorefChain> entry: corefChains.entrySet()) { |
| out.println("Chain " + entry.getKey() + " "); |
| for (CorefChain.CorefMention m : entry.getValue().getMentionsInTextualOrder()) { |
| |
| List<CoreLabel> tokens = sentences.get(m.sentNum - 1).get(CoreAnnotations.TokensAnnotation.class); |
| |
| out.println(" " + m + ", i.e., 0-based character offsets [" + tokens.get(m.startIndex - 1).beginPosition() + |
| ", " + tokens.get(m.endIndex - 2).endPosition() + ")"); |
| } |
| } |
| out.println(); |
|
|
| out.println("The first sentence overall sentiment rating is " + sentence.get(SentimentCoreAnnotations.SentimentClass.class)); |
| } |
| IOUtils.closeIgnoringExceptions(out); |
| IOUtils.closeIgnoringExceptions(xmlOut); |
| } |
|
|
| } |
|
|