Add new SequenceTagger model.
Browse files- README.md +35 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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("alanakbik/ner-v0.13.0")
|
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 |
+
```
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14b416d8e8bed10dfa8aaa59bf6ed3c18cc9a77f02196a16e3fb7cc269567697
|
3 |
+
size 87506247
|