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 impo
Solution 1:
Seems like you have to input a lowercase string to the lemmatize
method:
>>> WordNetLemmatizer().lemmatize('having','v')
'have'>>> WordNetLemmatizer().lemmatize('has','v')
'have'
Solution 2:
Try using one of the stemmers in nltk.stem module, such as the PorterStemmer. Here's an online demo of NLTK's stemmers: http://text-processing.com/demo/stem/
Post a Comment for "Can Wordnetlemmatizer In Nltk Stem Words?"