Skip to content

Instantly share code, notes, and snippets.

@vallantin
Created November 19, 2018 16:12
Show Gist options
  • Save vallantin/37b394b90c7ab6a7b3931d40730af03a to your computer and use it in GitHub Desktop.
Save vallantin/37b394b90c7ab6a7b3931d40730af03a to your computer and use it in GitHub Desktop.
no_stop_en = [token for token in doc_en if token.is_stop is not True]
no_stop_pt = [token for token in doc_pt if token.is_stop is not True]
no_stop_fr = [token for token in doc_fr if token.is_stop is not True]
print(no_stop_en)
print(no_stop_pt)
print(no_stop_fr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment