I've used porter stemmer in my project(using python). but I see some errors in output. for example the term "intrductory" changed to "introductori" instead of "introduct". is it possible to improve this result?
I've used porter stemmer in my project(using python). but I see some errors in output. for example the term "intrductory" changed to "introductori" instead of "introduct". is it possible to improve this result?
Why do you think it is an error? Step 2 in the
Porter Stemmer
algorithm states:So
introductory
should indeed be converted tointroductori
That said, if you do want to break it down to a base word you can do so in
Step4()