How can I get the lemma for a given word using Wordnet. I couldn't seem to find in the wordnet documentation what i want. http://wordnet.princeton.edu/wordnet/man/wn.1WN.html

For example for the word "books" i want to get "book" , ashes => ash , booking => book, apples => apple .... etc.

i want to achieve this using wordnet in command line and I cant find exact options to retrieve such case.

A php solution would also be of great help because I originally intend to use the wordnet php API but it seems the current one in their website isn't working.

link|improve this question

42% accept rate
feedback

1 Answer

I am not sure that WordNet implements it natively. NLTK has Morphy, which precisely does what you want, but it is implemented in Python though. You can write a small Python program to take input from the command line and return the lemma.

Search for 'Morphy' in the following link: http://nltk.googlecode.com/svn/trunk/doc/api/nltk.corpus.reader.wordnet.WordNetCorpusReader-class.html

nltk.WordNetLemmatizer() also does the job. Search for 'Lemmatization' in the following link: http://nltk.googlecode.com/svn/trunk/doc/book/ch03.html

NLTK website : http://www.nltk.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.