Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (ns nlp.core
  2.   (:import (edu.stanford.nlp.pipeline Annotation StanfordCoreNLP)
  3.            (edu.stanford.nlp.sentiment SentimentCoreAnnotations$SentimentAnnotatedTree)
  4.            (edu.stanford.nlp.neural.rnn RNNCoreAnnotations)
  5.            (edu.stanford.nlp.ling CoreAnnotations$SentencesAnnotation
  6.                                   CoreAnnotations$TextAnnotation
  7.                                   CoreAnnotations$NamedEntityTagAnnotation
  8.                                   CoreAnnotations$PartOfSpeechAnnotation
  9.                                   CoreAnnotations$TokensAnnotation)
  10.            (java.util Properties)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement