Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to find a means of getting roots of words where didn't/hadn't end up being classified as the same word (maybe "not"). Considering that lemmatizing/stemming/wordnet-finding-synonyms, wordnet-finding-hypernyms/hyponyms hasn't worked Im wondering if there is in fact a way to do this in Python.

Example of requested output

def get_root(word):
   #some code
   return root

get_root("hadnt") == get_root("didnt")
>> True

Thanks

question from:https://stackoverflow.com/questions/65646773/means-of-getting-roots-of-words-in-python-that-arent-covered-by-stem-lemma-word

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...