Constannnnnt / Distributed-CoreNLP

This infrastructure, built on Stanford CoreNLP, MapReduce and Spark with Java, aims at processing documents annotations at large scale.
https://github.com/Constannnnnt/Distributed-CoreNLP
MIT License
0 stars 0 forks source link

finish parse #15

Closed KaisongHuang closed 5 years ago

KaisongHuang commented 5 years ago

preview of parse

((0,parse),(ROOT (S (NP (NP (DT The) (NNP University)) (PP (IN of) (NP (NNP Waterloo)))) (VP (VBZ is) (VP (VBN located) (PP (IN in) (NP (NNP Canada))))) (. .))) (ROOT (S (NP (NNP Goose)) (VP (VBZ lives) (PP (IN in) (NP (DT this) (NNP University)))) (. .))))
((1,parse),(ROOT (S (NP (NP (DT The) (NNP University)) (PP (IN of) (NP (NNP Waterloo)))) (VP (VBZ is) (VP (VBN located) (PP (IN in) (NP (NNP Canada))))) (. .))) (ROOT (S (NP (NNP Goose)) (VP (VBZ lives) (ADVP (RB here))) (. .))))

Here is a link to Parser FAQ: https://nlp.stanford.edu/software/parser-faq.html

For part-of-speech tags and phrasal categories, there is an online copy of documentation for English; in particular, see TAGGUID1.PDF (POS tagging guide) and PRSGUID1.PDF (phrase structure bracketing guide).