stanford nlp 3.8.0 parse中通过java程序获取root节点
Posted 一骑绝尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stanford nlp 3.8.0 parse中通过java程序获取root节点相关的知识,希望对你有一定的参考价值。
Collection<TypedDependency> tdl = gs.allTypedDependencies();
// TreeGraphNode tsn = gs.root();
for(TypedDependency i: tdl){
//reln表示节点的关系,dep表示依赖指向的节点
if(i.reln() == GrammaticalRelation.ROOT){
LOG.info("输出root: " + i.dep().toString());
;
}
}
以上是关于stanford nlp 3.8.0 parse中通过java程序获取root节点的主要内容,如果未能解决你的问题,请参考以下文章
stanford NLP、哈工大云平台NLTP、百度NLPC