Skip to content

Instantly share code, notes, and snippets.

@kzinmr
Last active June 4, 2021 04:10
Show Gist options
  • Save kzinmr/88054cb39218df6958039a2559631d81 to your computer and use it in GitHub Desktop.
Save kzinmr/88054cb39218df6958039a2559631d81 to your computer and use it in GitHub Desktop.
# https://pypi.org/project/stop-words/
from stop_words import get_stop_words
from nltk.corpus import stopwords
stop_words = list(get_stop_words('en')) #About 900 stopwords
nltk_words = list(stopwords.words('english')) #About 150 stopwords
@kzinmr
Copy link
Author

kzinmr commented Jun 4, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment