nltk / nltk_data

NLTK Data
1.45k stars 1.04k forks source link

Minor error in the RSLP's step0 file #207

Open felipovysk opened 6 months ago

felipovysk commented 6 months ago

In the step0.pt file in stemmers/rslp.zip the following line:

"ães"   1   "ão"    "mãe"

has mãe as an exception for the ães rule. However, the implementation requires the exceptions to be in their plural form (which, in this case, would be mães). A simple fix for this would be to change the line into

"ães"   1   "ão"    "mães"