在NLTK 3.0中使用Wordnet从Synset中提取Word

前段时间,有人在SO上使用NLTK的wordnet包装器问how to retrieve a list of words for a given synset.以下是建议的回复之一:

for synset in wn.synsets('dog'):
    print synset.lemmas[0].name

使用NLTK 3.0运行此代码会产生TypeError:’instancemethod’对象不可订阅.

我尝试了以前提出的每个解决方案(上面链接页面上描述的每个解决方案),但每个都会抛出错误.因此,我想问:是否可以使用NLTK 3.0打印单词列表?我会感谢别人可以就这个问题提出的任何建议.

解决方法:

WordNet在NLTK 3.0中运行良好.您只是以错误的方式访问lemmas(和名称).试试这个:

>>> import nltk
>>> nltk.__version__
'3.0.0'
>>> from nltk.corpus import wordnet as wn
>>> for synset in wn.synsets('dog'):
    for lemma in synset.lemmas():
        print lemma.name()


dog
domestic_dog
Canis_familiaris
frump
dog
dog
cad
bounder
blackguard
...

synset.lemmas是一个方法,没有__getitem __()方法(因此不可订阅).

相关文章

python方向·数据分析   ·自然语言处理nlp   案例:中...
原文地址http://blog.sina.com.cn/s/blog_574a437f01019poo....
ptb数据集是语言模型学习中应用最广泛的数据集,常用该数据集...
 Newtonsoft.JsonNewtonsoft.Json是.Net平台操作Json的工具...
NLP(NaturalLanguageProcessing)自然语言处理是人工智能的一...
做一个中文文本分类任务,首先要做的是文本的预处理,对文本...