I have extracted text from an image using Easyocr and I found so many spelling mistakes in the list of words. In that, I need to separate and find the Number of meaning full and Non-meaning full words or spell mistaken words.
I have this:
example = ["kaaggl","woryse","good","hey","otherwise","orrsy","taken","sometimes"]
I need like this:
meaning_full_words = ["good","hey","otherwise","taken","sometimes"]
Non-meaning_full_words = ["kaaggl","woryse","orrsy"]
please, help me if is there any possible way to do it I have a huge dataset.