Skip to content

Instantly share code, notes, and snippets.

@khaledadrani
Created January 17, 2022 17:22
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 khaledadrani/c09010237e36fc31e20ce2ab40c8b5f9 to your computer and use it in GitHub Desktop.
Save khaledadrani/c09010237e36fc31e20ce2ab40c8b5f9 to your computer and use it in GitHub Desktop.
samples = ["Facebook has a price target of $ 20 for this quarter",
"$ AAPL is gaining a new momentum"]
for doc in ner.pipe(samples):
for ent in doc.ents:
print(ent.label_, ent.text)
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment