0
votes
1answer
571 views

Stemming in Wordnet API

I'm using the MIT Wordnet API (http://projects.csail.mit.edu/jwi/) to use wordnet in my Java application. I'm having the following problem: If I search "signed" in the Wordnet Search at ...
0
votes
1answer
2k views

Import WordNet In NLTK

I want to import wordnet dictionary but when i import Dictionary form wordnet i see this error : for l in open(WNSEARCHDIR+'/lexnames').readlines(): IOError: [Errno 2] No such file or directory: ...
0
votes
1answer
193 views

How do I Get All Attributes Of Synsets?

Please Give Me am example That have all of attribute of synset of a word i know only this attribute: name , lemma_names , definition synsetsWord = ObjWn.synsets( 'Book' ) i = 0 for ...
1
vote
2answers
999 views

Can WordNetLemmatizer in Nltk stem words?

I want to find word stems with Wordnet. Does wordnet have a function for stemming? I use this import for my stemming, but it doesn't work as expected. from nltk.stem.wordnet import ...