I am using the nlp parser stanord. I want to extract some elements like nsubj and more from Collection tdl. My code is:

TreebankLanguagePack tlp = new PennTreebankLanguagePack();
GrammaticalStructureFactory gsf = tlp.grammaticalStructureFactory();
GrammaticalStructure gs = gsf.newGrammaticalStructure(parse);
Collection tdl = gs.typedDependenciesCollapsed();

but my problem is I don't know how to compare the elements.that I get from the Collection.

Thanks a lot for helping!

link|improve this question
feedback

1 Answer

It is a collection of TypedDependency and can then be examined or manipulated in all the usual Java ways. For example, this code prints out just the nsubj relations:

  Collection<TypedDependency> tdl = gs.typedDependenciesCCprocessed(true);
  for (TypedDependency td : tdl) {
    if (td.reln().equals(EnglishGrammaticalRelations.NOMINAL_SUBJECT)) {
      System.out.println("Nominal Subj relation: " + td);
    }
  }
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.