You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
analyzer.lemmatize() simply returns all the possible lemmas for the word. what would be really cool is to have a method which simply returns the first lemma; tail to head (i.e. last lemma; head to tail).
for example:
analyzer.lemmatize("çekiliş")
["çekilişle", ("çekiliş", "çekmek", "çekilmek")]
when we remove the inflectional suffix '-le' we still preserve the meaning. but after removing 'iş' we have a different meaning (çekilmek). so an example usecase would be;
analyzer.get_last_lemma("'çekilişle")
"çekiliş"
The text was updated successfully, but these errors were encountered:
analyzer.lemmatize() simply returns all the possible lemmas for the word. what would be really cool is to have a method which simply returns the first lemma; tail to head (i.e. last lemma; head to tail).
for example:
The text was updated successfully, but these errors were encountered: