All,
What is the base form of battling? Lemmatization results in battling where as I think it should be battle. Is my understanding of lemmatization wrong?
from nltk import download
download('wordnet')
from nltk.stem.wordnet import WordNetLemmatizer
lemmatizer = WordNetLemmatizer()
def get_lemma(word):
return lemmatizer.lemmatize(word)
get_lemma('battling')
The same is for the word coming