I'm using the stanford core NLP and I use this line to load some modules to process my text:
props.put("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
Is ther a module that i can load to chunks the text?
Or any suggestion with a alterantive way to use the stanford core to chunk some text?
Thank you
I think the parser output can be used to obtain NP chunks. Take a look at the context-free representation on the Stanford Parser website which provides example output.
To use chunking with Stanford NLP you can use the following packages:
Source: http://www-nlp.stanford.edu/links/statnlp.html#NPchunk