Reputation: 85
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
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