Would like to know if there is a way to extract the main word out of descendants,
ex:
recruitment -> recruit
recruiter -> recruit
recruited -> recruit
I got the last one using wordnet lemmatizer, like this:
from nltk.stem.wordnet import WordNetLemmatizer
lmtzr = WordNetLemmatizer()
lmtzr.lemmatize('recruited', 'v')
can't seem to find a solution for the others, is there a library for that or should I code a function.