标签: r python-3.x nlp
我有一个文本分类任务,我正试图从文本语料库中提取最重要的动词。 例如:
答案 0 :(得分:1)
library(udpipe) x <- udpipe(c("Mailing the meeting notes", "Call to set up meeting."), "english-ewt") subset(x, upos %in% c("VERB"))
然后考虑如何定义重要