从一个单词获取所有可能的pos标签

时间:2018-08-07 08:35:42

标签: python-3.x nlp nltk

我目前正在尝试使用Python获取单个单词的所有可能的pos标签。 如果输入单个单词,则从传统的pos标记器中您只能返回一个标记。 有没有办法获得所有可能性? 是否可以在语料库(例如棕色)中搜索特定的单词,而不仅仅是类别?

致以问候并感谢您的帮助

1 个答案:

答案 0 :(得分:1)

您可以使用此方法获取pos_tag()-专门用于brown

import nltk
from nltk.corpus import brown
from collections import Counter, defaultdict

# x is a dict which will have the word as key and pos tags as values 
x = defaultdict(list)

# looping for first 100 words and its pos tags
for word, pos in brown.tagged_words()[1:100]:
    if pos not in x[word]:        # to append one tag only once
        x[word].append(pos)       # adding key-value to x

# to print the pos tags for the word 'further'
print(x['further'])
#['RBR']