Skip to content

Instantly share code, notes, and snippets.

@jabirjamal
Created July 23, 2021 06:12
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 jabirjamal/1ed7db2ac2032ef3d129360ddbd645b3 to your computer and use it in GitHub Desktop.
Save jabirjamal/1ed7db2ac2032ef3d129360ddbd645b3 to your computer and use it in GitHub Desktop.
import spacy
nlp = spacy.load('en_core_web_md')
doc = nlp('I own a dell computer.')
print([token.text for token in doc])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment