chenninger
chenninger

Reputation: 85

Get the opposite of lemma in wordnet

I am looking for the opposite of getLemma() for wordnet.

From the base form of a verb for example "be", I want the various forms such as "is" and "are". Is it possible to get to those using Extended Java WordNet Library?

Upvotes: 1

Views: 175

Answers (1)

Alexandru Ceausu
Alexandru Ceausu

Reputation: 317

A morphological generator takes lemma as input and provides a list of morphological variants. Check Catvar, for example.

Princeton WordNet has limited morphology analysis. Even so, Morphy can be easily modified to return more than the existing dictionary forms.

Upvotes: 2

Related Questions