Has anyone ever tried to parse phrasal verbs with Stanford NLP? The problem is shared phrasal verbs, for example: to rise up, to do: we climbed this hill. I have to do this job.
The first phrase looks like this in a parse tree:
(VP
(VBD climbed)
(ADVP
(IN that)
(NP (NN hill)
)
)
(ADVP
(RB up)
)
)
second phrase:
(VB do)
(NP
(DT this)
(NN job)
)
(PP
(IN over)
)
So it seems that reading the parsing tree will be correct, but how do you know that a verb will be phrasal?
source
share