Skip to content

Instantly share code, notes, and snippets.

@mmmayo13
Created March 25, 2018 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mmmayo13/aa19c8fd5f4e85cdbb06ddde15de70e7 to your computer and use it in GitHub Desktop.
Save mmmayo13/aa19c8fd5f4e85cdbb06ddde15de70e7 to your computer and use it in GitHub Desktop.
def stem_and_lemmatize(words):
stems = stem_words(words)
lemmas = lemmatize_verbs(words)
return stems, lemmas
stems, lemmas = stem_and_lemmatize(words)
print('Stemmed:\n', stems)
print('\nLemmatized:\n', lemmas)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment