Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stemming issue for certain words e.g. providing -> provid #69

Closed
tk3369 opened this issue Feb 5, 2018 · 2 comments
Closed

stemming issue for certain words e.g. providing -> provid #69

tk3369 opened this issue Feb 5, 2018 · 2 comments

Comments

@tk3369
Copy link

tk3369 commented Feb 5, 2018

Some words are not converted properly. Probably a libstemmer issue but that repo doesn't seem to be active so I'm posting here :-)

julia> sm = TextAnalysis.stemmer_for_document(StringDocument("hello"))
Stemmer algorithm:english encoding:UTF_8

julia> stem(sm, "coming")
"come"

julia> stem(sm, "coding")
"code"

julia> stem(sm, "providing")
"provid"

julia> stem(sm, "improvising")
"improvis"

julia> stem(sm, "pursuing")
"pursu"

@aviks
Copy link
Member

aviks commented Feb 5, 2018

Not sure what we can do about this. Everyone just seems to use the Snowball stemmer.

@rssdev10
Copy link
Collaborator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants