We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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"
The text was updated successfully, but these errors were encountered:
Not sure what we can do about this. Everyone just seems to use the Snowball stemmer.
Sorry, something went wrong.
https://snowballstem.org/ and a wrapper https://github.com/JuliaText/Snowball.jl
No branches or pull requests
Some words are not converted properly. Probably a libstemmer issue but that repo doesn't seem to be active so I'm posting here :-)
The text was updated successfully, but these errors were encountered: