Skip to content

Instantly share code, notes, and snippets.

@alexbnlee
Forked from SuvroBaner/stanford_ner.py
Created November 5, 2019 04:53
Show Gist options
  • Save alexbnlee/3f95c5200d836c4dddff98412c1e3e44 to your computer and use it in GitHub Desktop.
Save alexbnlee/3f95c5200d836c4dddff98412c1e3e44 to your computer and use it in GitHub Desktop.
article = '''
Asian shares skidded on Tuesday after a rout in tech stocks put Wall Street to the sword, while a
sharp drop in oil prices and political risks in Europe pushed the dollar to 16-month highs as investors dumped
riskier assets. MSCI’s broadest index of Asia-Pacific shares outside Japan dropped 1.7 percent to a 1-1/2
week trough, with Australian shares sinking 1.6 percent. Japan’s Nikkei dived 3.1 percent led by losses in
electric machinery makers and suppliers of Apple’s iphone parts. Sterling fell to $1.286 after three straight
sessions of losses took it to the lowest since Nov.1 as there were still considerable unresolved issues with the
European Union over Brexit, British Prime Minister Theresa May said on Monday.'''
import nltk
from nltk.tag import StanfordNERTagger
print('NTLK Version: %s' % nltk.__version__)
stanford_ner_tagger = StanfordNERTagger(
'stanford_ner/' + 'classifiers/english.muc.7class.distsim.crf.ser.gz',
'stanford_ner/' + 'stanford-ner-3.9.2.jar'
)
results = stanford_ner_tagger.tag(article.split())
print('Original Sentence: %s' % (article))
for result in results:
tag_value = result[0]
tag_type = result[1]
if tag_type != 'O':
print('Type: %s, Value: %s' % (tag_type, tag_value))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment