Chunking some text with the stanford-nlp
问题 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 回答1: 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. 回答2: