Skip to content

Instantly share code, notes, and snippets.

@vallantin
Created November 19, 2018 16:14
Show Gist options
  • Save vallantin/b0395aa08ba277d7da50a873ddd64ab3 to your computer and use it in GitHub Desktop.
Save vallantin/b0395aa08ba277d7da50a873ddd64ab3 to your computer and use it in GitHub Desktop.
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