Remove a verb as a stopword

前端 未结 3 1630
谎友^
谎友^ 2021-01-07 07:29

There are some words which are used sometimes as a verb and sometimes as other part of speech.

Example

A sentence with the meaning of the w

3条回答
  •  情话喂你
    2021-01-07 08:11

    In python it is done as:

    from nltk import pos_tag
    s1 = "I blame myself for what happened"
    pos_tag(s1.split())
    

    It will give you words with there tags

提交回复
热议问题