Parse out phrasal verbs
Has anyone ever tried parsing out phrasal verbs with Stanford NLP? The problem is with separable phrasal verbs, e.g.: climb up, do over: We climbed that hill up. I have to do this job over. The first phrase looks like this in the parse tree: (VP (VBD climbed) (ADVP (IN that) (NP (NN hill) ) ) (ADVP (RB up) ) ) the second phrase: (VB do) (NP (DT this) (NN job) ) (PP (IN over) ) So it seems like reading the parse tree would be the right way, but how to know that verb is going to be phrasal? Dependency parsing, dude. Look at the prt (phrasal verb particle) dependency in both sentences. See the