Olga Bystrova
commited on
Commit
·
ecfb6f0
1
Parent(s):
0c578ff
add draft of readme.md
Browse files
README.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
|
5 |
+
tags:
|
6 |
+
- pytorch
|
7 |
+
- ner
|
8 |
+
- qa
|
9 |
+
|
10 |
license: mit
|
11 |
+
|
12 |
+
datasets:
|
13 |
+
- conll2003
|
14 |
+
|
15 |
+
metrics:
|
16 |
+
- f1
|
17 |
---
|
18 |
+
# t5-base-qa-ner-conll
|
19 |
+
|
20 |
+
Unofficial implementation of [InstructionNER](https://arxiv.org/pdf/2203.03903v1.pdf).
|
21 |
+
t5-base model tuned on conll2003 dataset.
|
22 |
+
|
23 |
+
https://github.com/ovbystrova/InstructionNER
|
24 |
+
|
25 |
+
## Prediction Sample
|
26 |
+
```
|
27 |
+
Sentence: The protest , which attracted several thousand supporters , coincided with the 18th anniversary of Spain 's constitution .
|
28 |
+
Instruction: please extract entities and their types from the input sentence, all entity types are in options
|
29 |
+
Options: ORG, PER, LOC
|
30 |
+
|
31 |
+
Prediction (raw text): Spain is a LOC.
|
32 |
+
```
|
33 |
+
|