In typed dependency, Stanford Parser also shows the Word occuring place e.g. "love-2". Now it shows that "love" in "2" place.

nsubj(love-2, I-1)
poss(country-4, my-3)
dobj(love-2, country-4)

Now, how can I find the place of word programtically using Stanford parser API? Is there any fanuction in API?

link|improve this question
feedback

2 Answers

You must have given it a sentence already, so I am not sure why you don't already know the position of the word in it.

If you are instead trying to understand why you have multiple dependencies mentioning the same word, then this is because words can propagate from one dependency to another one.

link|improve this answer
@Miles.. basically i want to make some patterns for the aquisition of concept and then learn ontologies from these concept...So during making patterns, I also need the word place in a sentence...Please help me – Qasim Jul 16 '11 at 7:50
@Miles.... I want only Compound Nouns (May b upto 3 or 4 words) so thay why i need the place of a word in a sentence programtically... – Qasim Jul 16 '11 at 7:52
feedback

You do something like the below. The wordIndex is what you want.

import edu.stanford.nlp.ling.CoreAnnotations.IndexAnnotation;

...

GrammaticalStructure gs = gsf.newGrammaticalStructure(parse);
List<TypedDependency> tdl = gs.typedDependenciesCCprocessed();
TypedDependency td = tdl.get(0);
CoreLabel cl = td.dep().label();
int wordIndex = cl.get(IndexAnnotation.class);
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.