Я пытаюсь разобрать отчеты медицинских исследований, используя Stanford NLP.Я могу получить GrammaticRelation всех узлов, кроме первого или корневого узла.Как мне получить это значение?
Я написал 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)