Lemmatization.md (421B)
1 # Lemmatization 2 3 **Source:** https://www.ibm.com/think/topics/stemming-lemmatization 4 **Definition:** Lemmatization is an NLP approach to simplifying terms that reduces terms to a dictionary base form. 5 6 ## Examples Using the WordNet Lemmatizer 7 8 computer -> computer 9 news -> news 10 dogs -> dog 11 dog -> dog 12 doormen -> doorman 13 doorman -> doorman 14 15 See [stemming](Stemming.md) for a comparison between stemming and lemmatization.