有没有办法使用 nltk wordnet 检测给定单词是否是名词?另外我想单独提取特定单词的含义。怎么做?
问问题
2440 次
1 回答
5
要检测一个词是否是名词,试试这个。
from nltk.corpus import wordnet as wn
from nltk.corpus.reader import NOUN
#this gives a synsets list of empty length, since there is no noun corresponding to 'propose'
synsets = wn.synsets('propose', NOUN)
if synsets.length == 0 :
print ' We found a pure NOUN'
#this will give you a non empty synset list since 'iron' can be a NOUN too.
synsets = wn.synsets('iron',NOUN)
if synsets.length > 0 :
print 'Iron is also a noun other than verb'
为了解决第二部分 - 一个词可能有多种含义,您需要明确定义您的含义是什么 - 词之间存在各种关系,例如上位词、同义词、下位词、同义词等。
还要找到与给定单词含义最接近的含义,您可能需要找到一个单词与其每个同义词集之间的相似性,并选择具有最高值的那个。请参阅 Wordnet 中的 LCH 相似性和 JCN 相似性模块以获取更多信息
于 2013-07-15T05:57:55.153 回答