Questions tagged [stemming]

For questions about stemming, i.e. the process of reducing inflected words to their word stem, base, or root form. For example, after stemming, "cats" becomes "cat" (the base form of related words).

1 questions
2
votes
1 answer

How can I find words in a string that are related to a given word, then associate a sentiment to that found word?

I came up with an NLP-related problem where I have a list of words and a string. My goal is to find any word in the list of words that is related to the given string. Here is an example. Suppose a word from the list is healthy. If the string has any…