osanseviero HF staff commited on
Commit
572f2f9
1 Parent(s): c018b49

Add new SequenceTagger model.

Browse files
Files changed (2) hide show
  1. README.md +36 -0
  2. pytorch_model.bin +3 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - flair
4
+ - token-classification
5
+ - sequence-tagger-model
6
+ ---
7
+
8
+ ### Demo: How to use in Flair
9
+
10
+ Requires:
11
+ - **[Flair](https://github.com/flairNLP/flair/)** (`pip install flair`)
12
+
13
+ ```python
14
+ from flair.data import Sentence
15
+ from flair.models import SequenceTagger
16
+
17
+ # load tagger
18
+ tagger = SequenceTagger.load("flair/ner-english-ontonotes-large")
19
+
20
+ # make example sentence
21
+ sentence = Sentence("On September 1st George won 1 dollar while watching Game of Thrones.")
22
+
23
+ # predict NER tags
24
+ tagger.predict(sentence)
25
+
26
+ # print sentence
27
+ print(sentence)
28
+
29
+ # print predicted NER spans
30
+ print('The following NER tags are found:')
31
+
32
+ # iterate over entities and print
33
+ for entity in sentence.get_spans('ner'):
34
+ print(entity)
35
+ ```
36
+
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c750f619423a4dc32f2d744b3f2add41e45cb4e3aaaf8a5d2cf2a39bc6fd70f6
3
+ size 75184059