My work consists in finding a query (can be noun+verb) in a sentence, then extract the object.
exemple: "coding is sometimes a tough work." My query would be: "coding is".
the typed dependencies i get are:
nsubj(work-6, coding-1)
cop(work-6, is-2)
advmod(work-6, sometimes-3)
det(work-6, a-4)
amod(work-6, tough-5)
My program should extract the nsubj dependency, identify "coding" as the query and save "work".
May be this seems simple, but until now, i didn't find a method able to extract a specific typed dependency, and I really need this to finish my work.
Any help is welcome,