Question

I installed nltk using pip install on python 2.7.3. When I run these commands

import nltk
from nltk.corpus import wordnet as wn
dog = wn.sysnet('dog.n.01')

I get the following error ..

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\nltk\corpus\util.py", line 71, in __getattr__
return getattr(self, attr)
AttributeError: 'WordNetCorpusReader' object has no attribute 'sysnet'

How should I correct it ?

Was it helpful?

Solution

I think you want word.synset, not word.sysnet

nltk documentation for synset.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top