如何从R中的文本字符串数据中提取最重要的动词

时间:2019-02-26 09:18:16

标签: r python-3.x nlp

我有一个文本分类任务,我正试图从文本语料库中提取最重要的动词。 例如:

  1. Text =“邮寄会议记录”:重要动词= Mail
  2. Text =“致电设置会议。” :重要动词呼叫。 如何确定哪个是最重要的动词?

1 个答案:

答案 0 :(得分:1)

library(udpipe)
x <- udpipe(c("Mailing the meeting notes", "Call to set up meeting."), "english-ewt")
subset(x, upos %in% c("VERB"))

然后考虑如何定义重要