;; These parses were produced by the Apache OpenNLP project. ;; http://blog.dpdearing.com/2011/12/opennlp-part-of-speech-pos-tags-penn-english-treebank/ ;; documents the part-of-speech tags attached to English words; in phrase tags, ;; S is for Sentence, NP for a Noun Phrase (often these are the subject and/or object ;; of the sentence, and VP is for a Verb Phrase. ;; Your rule is at an end (TOP (S (NP (PRP$ Your) (NN rule)) (VP (VBZ is) (PP (IN at) (NP (DT an) (NN end)))))) ;; Your rule is at an end and you are ugly (TOP (S (S (NP (PRP$ Your) (NN rule)) (VP (VBZ is) (PP (IN at) (NP (DT an) (NN end))))) (CC and) (S (NP (PRP you)) (VP (VBP are) (ADJP (JJ ugly)))))) ;; Your rule is at an end, and it was too long already (TOP (S (S (NP (PRP$ Your) (NN rule)) (VP (VBZ is) (PP (IN at) (NP (DT an) (NN end))))) (, ,) (CC and) (S (NP (PRP it)) (VP (VBD was) (ADVP (RB too) (RB long) (RB already))))))