我正在使用nlp parser stanord
. 我想从Collection
tdl 中提取一些元素,比如 nsubj 等等。我的代码是:
TreebankLanguagePack tlp = new PennTreebankLanguagePack();
GrammaticalStructureFactory gsf = tlp.grammaticalStructureFactory();
GrammaticalStructure gs = gsf.newGrammaticalStructure(parse);
Collection tdl = gs.typedDependenciesCollapsed();
但我的问题是我不知道如何比较从集合中获得的元素。
非常感谢您的帮助!