Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (55.6k points)
Can anyone explain in simple words about stemming?

1 Answer

0 votes
by (119k points)

Stemming means removing the suffix of the word and making it to a base word. Stemming is the normalization technique used in Natural language processing which helps in saving the number of computations. There are libraries in NLP for stemming like PorterStemming, Snowball Stemmer, etc.

For example, We have a word ‘walking’, we remove the suffix ‘ing’ and make that word to ‘walk’

Stemming is used to reduce the dimensionality of data which is best for ML models. In simple words, if there are words like walk, walks, waited, waiting, All these words are different but contextually similar. We replace all these words walk by removing suffixes.

There are two problems with stemming such as Over stemming and stemming. Over stemming means, if we do stemming for words like University, Universe and Universal then we will get univers even though all three mean different things. Under stemming means if we do stemming to words will change from alumnus to alumnu, alumni to alumni, alumnae to alumna even though all three words alumnus, alumni, alumnae mean same, they are rooted to different words.

You can know more about stemming from this video on NLP in python:

Related questions

0 votes
1 answer
0 votes
3 answers
0 votes
1 answer
asked Mar 5, 2020 in AI and Deep Learning by Sudhir_1997 (55.6k points)
0 votes
1 answer
asked Mar 5, 2020 in AI and Deep Learning by Sudhir_1997 (55.6k points)
0 votes
1 answer

Browse Categories

...