Downloads · 30 days
11
2% of all-time downloads
alanakbik/test-push-public
test-push-public is a token classification model from alanakbik. Use it when you need labels on individual words, such as names. It is set up for flair.
Downloads · 30 days
11
2% of all-time downloads
All-time downloads
631
Public
Repo size
244 MB
Likes
0
Public
Click a slice to open those files.
.bin244 MB · 100%
From the Hugging Face model README
Requires:
pip install flair)from flair.data import Sentence
from flair.models import SequenceTagger
# load tagger
tagger = SequenceTagger.load("alanakbik/test-push-public")
# make example sentence
sentence = Sentence("On September 1st George won 1 dollar while watching Game of Thrones.")
# predict NER tags
tagger.predict(sentence)
# print sentence
print(sentence)
# print predicted NER spans
print('The following NER tags are found:')
# iterate over entities and print
for entity in sentence.get_spans('ner'):
print(entity)