Created
March 25, 2018 22:35
-
-
Save mmmayo13/aa19c8fd5f4e85cdbb06ddde15de70e7 to your computer and use it in GitHub Desktop.
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
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