Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form?

For example:

I want to write a function which would give me verb in expected form as follows.

v = 'go'
present = present_tense(v)
print present # prints "going"

past = past_tense(v)
print past # prints "went"

Any suggestion or help would be useful.

Thanks in advance.

link|improve this question

59% accept rate
Is there not anybody who can answer this question? – Software Enthusiastic Sep 21 '10 at 6:10
feedback

2 Answers

up vote 6 down vote accepted

I think what you're looking for is the NodeBox::Linguistics library. It does exactly that:

print en.verb.present("gave")
>>> give
link|improve this answer
Very good, I think I am looking for this one only... Let me try it. – Software Enthusiastic Sep 22 '10 at 11:05
feedback

JWI (the wordnet library by MIT) also has a stemmer (WordNetStemmer) which converts different morphological forms of a word like ("written", "writes", "wrote") to their base form. It seems it works only for nouns (like plurals) and verbs though.

This post also shows how to do this kind of stemming using JWNL, another Java-based Wordnet library: http://tipsandtricks.runicsoft.com/Other/JavaStemmer.html

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.