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,

link|improve this question

43% accept rate
Which programming language are you using? – Kaarel Mar 29 '11 at 9:27
I am using java, but for this old comment i find the solution, i used StringTokonizer 2 times, with "(" as separator, then wit ",". Finally i put the extracted tokens in an xml file. – safé May 12 '11 at 8:15
feedback

1 Answer

I don't think there's a way to tell the parser to extract the dependencies around a given word. However, you can just run through the list of dependencies for each sentence, searching for all instances in which the query word appears in an nsubj relationship.

Also, how are you storing the parses of the sentences? If (as I gather from your question) it's in a text file, you can just use 2 successive greps, one for the query word, and one for the relationship you desire, to get a list of relevant other words.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.