如何在R语言中进行依赖解析?

时间:2018-02-25 03:38:43

标签: machine-learning nlp stanford-nlp opennlp

我做过POSTagging。但是如何进行依赖解析呢?我可以用R语言获取它的代码吗?

1 个答案:

答案 0 :(得分:0)

可能您已经知道了。如果没有,我如何在R中进行依赖项解析:

library(cleanNLP)
library(udpipe)

s <- "I prefer the morning flight through Denver"

cnlp_init_udpipe()
doc <- cnlp_annotate(s, as_strings = TRUE)
cnlp_get_dependency(doc, get_token = FALSE)