Skip to content

Instantly share code, notes, and snippets.

@khozzy
Created November 2, 2017 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khozzy/1b8f78e157697e312db9cc0acba1467f to your computer and use it in GitHub Desktop.
Save khozzy/1b8f78e157697e312db9cc0acba1467f to your computer and use it in GitHub Desktop.
from nltk.stem.snowball import SnowballStemmer
snowball = nltk.SnowballStemmer("english")
snowball_stemmed = [snowball.stem(token) for token in tokens]
untokenize(snowball_stemmed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment