Created
November 19, 2018 16:12
-
-
Save vallantin/37b394b90c7ab6a7b3931d40730af03a 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
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