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 Stemmeralgorithm states:So
introductoryshould indeed be converted tointroductoriThat said, if you do want to break it down to a base word you can do so in
Step4()