I use Stanford CoreNLP, and I know that it does not support promotion of offers. What I'm looking for, given the input sentence, should have something like this as output:
[NP He ] [VP reckons ] [NP the current account deficit ] [VP will narrow ] [PP to ] [NP only # 1.8 billion ] [PP in ] [NP September ] .
I also know that OpenNLP obviously supports this feature, but I already wrote quite a lot of code using CoreNLP, and I would not want to switch. So, I'm looking for either an external library that can do this for me, or ideas for implementing this function in the simplest way (links to publications, links, everything is welcome), starting with a parsing tree. I don't need this to be as accurate as modern chunkers, at least for now, so I am looking to implement this quickly and possibly change it in the future if necessary.
source share