Created
November 19, 2018 16:14
-
-
Save vallantin/b0395aa08ba277d7da50a873ddd64ab3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
lemmas_en = [token.lemma_ for token in doc_en] | |
lemmas_pt = [token.lemma_ for token in doc_pt] | |
lemmas_fr = [token.lemma_ for token in doc_fr] | |
print(lemmas_en) | |
print(lemmas_pt) | |
print(lemmas_fr) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment