Skip to content

Instantly share code, notes, and snippets.

@lokeshsoni
Created April 10, 2017 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lokeshsoni/5629dc39a8a3a8bac894dcfb5f3daad5 to your computer and use it in GitHub Desktop.
Save lokeshsoni/5629dc39a8a3a8bac894dcfb5f3daad5 to your computer and use it in GitHub Desktop.
checking stop words out of nlp.vocab spacy
for word in nlp.vocab:
if nlp.vocab[word.orth_].is_stop:
print(word.orth_)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment