Skip to content

Instantly share code, notes, and snippets.

@shubham-singh-ss
Last active July 5, 2019 12:19
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 shubham-singh-ss/aa51ec4f1f19ef11a16d65b51d1b7c0d to your computer and use it in GitHub Desktop.
Save shubham-singh-ss/aa51ec4f1f19ef11a16d65b51d1b7c0d to your computer and use it in GitHub Desktop.
from spacy.lang.en import English
# Load English tokenizer, tagger, parser, NER and word vectors
nlp = English()
text = """Founded in 2002, SpaceX’s mission is to enable humans to become a spacefaring civilization and a multi-planet
species by building a self-sustaining city on Mars. In 2008, SpaceX’s Falcon 1 became the first privately developed
liquid-fuel launch vehicle to orbit the Earth."""
# "nlp" Object is used to create documents with linguistic annotations.
my_doc = nlp(text)
# Create list of word tokens
token_list = []
for token in my_doc:
token_list.append(token.text)
token_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment