Created
November 7, 2014 11:09
-
-
Save stroykova/e475b7af72ef362a45df to your computer and use it in GitHub Desktop.
PyStemmer usage example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Stemmer | |
stemmer = Stemmer.Stemmer('russian') | |
word = "Вася" | |
word = stemmer.stemWord(word.lower()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment