获取根节点的语法关系

时间:2019-02-18 01:41:58

标签: parsing stanford-nlp

我正尝试使用Stanford NLP解析医学研究报告。我可以获取除第一个节点或根节点以外的所有节点的GrammaticalRelation。我如何获得这些价值。

我编写了一个Java程序,该程序通过获取依赖关系图来解析报告,并且可以获取除根节点之外的所有其他节点的子对。

    public void DocAnnotationParse(String Input_text) {
    Annotation document = new Annotation(Input_text);
    Properties props = new Properties();
    //props.setProperty("annotators", "tokenize,ssplit,pos,lemma,ner,parse");
    props.setProperty("annotators", "tokenize,ssplit,pos,parse");
    StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
    pipeline.annotate(document);
    int sentNum = 0;
    Map<String, Map<String, Map<String,IndexedWord>>> sentMap = new LinkedHashMap<>(); // A map contains maps of each sentence
    for (CoreMap sentence : document.get(CoreAnnotations.SentencesAnnotation.class)) {
        SemanticGraph dependencyParse = sentence.get(SemanticGraphCoreAnnotations.BasicDependenciesAnnotation.class);
        IndexedWord firstVertex = dependencyParse.getFirstRoot();
        Map<String, Map<String,IndexedWord>> outterMap = new LinkedHashMap<>();
        RecursiveChild(outterMap, dependencyParse, firstVertex, 0);
        sentMap.put(Integer.toString(++sentNum), outterMap);
        logger.debug("outtermap: "+outterMap);
    }
    logger.debug("all sentMaps: "+sentMap);
    PrettyPrintBySentence(sentMap);
}


public void RecursiveChild(Map<String, Map<String, IndexedWord>> outterMap,
        SemanticGraph dependencyParse, 
        IndexedWord vertex, int hierLevel) {

    Map<String, IndexedWord> pairMap = new LinkedHashMap<>();
    pairMap.put("Root", vertex);
    List<IndexedWord>indxwdsL = dependencyParse.getChildList(vertex);
    List<Pair<GrammaticalRelation,IndexedWord>>childPairs = dependencyParse.childPairs(vertex);
    List<IndexedWord> nxtLevalAL = new ArrayList<>();
    if(!indxwdsL.isEmpty()) {
        ++hierLevel;    
        for(Pair<GrammaticalRelation, IndexedWord> aPair : childPairs) { //at level hierLevel x
            logger.debug(aPair);
            String grammRel = aPair.first.toString(); //Gramatic Relation
            IndexedWord indxwd = aPair.second;
            pairMap.put(grammRel, indxwd);
            List<Pair<GrammaticalRelation,IndexedWord>>childPairs2 = dependencyParse.childPairs(indxwd);
            if(!childPairs2.isEmpty()) {
                nxtLevalAL.add(indxwd);
            }
        }
    }
    String level = Integer.toString(hierLevel);     
    outterMap.put(level, pairMap);
    //Go to each lower level
    for(IndexedWord nxtIwd : nxtLevalAL) {
        RecursiveChild(outterMap, dependencyParse, nxtIwd, hierLevel);
    }
}

根顶点的childPair不包含我想要的语法关系。查看依赖关系图,没有任何值,只有字符串根。如何获得该节点的语法关系。例如简单的句子“我爱炸薯条”。给出图:

-> love/VBP (root)
  -> I/PRP (nsubj)
  -> fries/NNS (dobj)
    -> French/JJ (amod)
  -> ./. (punct)

1 个答案:

答案 0 :(得分:0)

嗨,我不是语言学家,但我的理解是,在ROOT外部仅存在一个SemanticGraph节点,并且从根到{句子中的单词。

因此,在您的示例中,root节点以ROOT关系附加到单词love

如果您查看SemanticGraph的代码,则会明确指出:

root

您可以使用* The root is not at present represented as a vertex in the graph. * At present you need to get a root/roots * from the separate roots variable and to know about it. 方法访问根目录列表(我猜想可以有多个吗?)。但是我认为这意味着getRoots()边从root节点流入这些单词。

如果您想用一个实际的Java对象而不是一个String来表示它,可以使用ROOT来表示“伪造的ROOT节点”和根之间的这种关系。

edu.stanford.nlp.trees.GrammaticalRelation.ROOT