Computer Science, asked by CapBlissSaigi458, 1 year ago

What is the difference between stemming and lemmatization? what are the advantages and disadvantages with each method?

Answers

Answered by S4MAEL
4
Main differences between stemming and lemmatization:

The main difference is the way they work and therefore the result they each of them returns:

Stemming algorithms work by cutting off the end or the beginning of the word, taking into account a list of common prefixes and suffixes that can be found in an inflected word. This indiscriminate cutting can be successful in some occasions, but not always, and that is why we affirm that this approach presents some limitations. Below we illustrate the method with examples in both English and Spanish.



Lemmatization, on the other hand, takes into consideration the morphological analysis of the words. To do so, it is necessary to have detailed dictionaries which the algorithm can look through to link the form back to its lemma. Again, you can see how it works with the 
Answered by Neeraj23051
0
When we are running a search, we want to find relevant results not only for the exact expression we typed on the search bar, but also for the other possible forms of the words we used. For example, it’s very likely we will want to see results containing the form “skirt” if we have typed “skirts” in the search bar.

This can be achieved through two possible methods: stemming and lemmatization. The aim of both processes is the same: reducing the inflectional forms of each word into a common base or root. However, these two methods are not exactly the same; this article will go over these differences along with some examples.

Similar questions