I'm using the Hunspell Stemmer in python. Some of the stemming is not what I want and I want Hunspell to ignore certain words when stemming.
In particular, it converts ABS to AB and table to t.
In the aff file, I saw ABS and AB in the list and I tried removing them but it doesn't work.
I figured it out: In the aff file, when you change the rules for the word, say for "ABS", just realize that there is another list of words in the lower part of the file which has "ABS" in small-caps so "abs"... you have to edit those rules too...
Found the Solution: When changing the rules in the aff file, I only edited the rule for ABS... I realized that if you keep scrolling, there is a 'small caps' version of the rules, so I had to make the same edits later down in the dictionary.