Explain stemming and its types?
Stemming is basically a crude method for cataloging related words. In other words, it essentially chops off letters from the end until the stem is reached.
This works fairly well in the English language in most cases but has exceptions where a more sophisticated process is required.
The two most commonly used stemmers in nltk library is
a) Porter Stemmer
b) Snowball Stemmer
From both the stemmers, Snowball stemmer is developed afterwards by the same developer who developed Porter Stemmer which is relatively faster both in logic and speed compared to Porter Stemmer.