Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
|
3 |
+
tags:
|
4 |
+
- token-classification
|
5 |
+
datasets:
|
6 |
+
- conll2012_ontonotesv5
|
7 |
+
widget:
|
8 |
+
- text: "On September 1st George won 1 dollar while watching Game of Thrones."
|
9 |
+
---
|
10 |
+
|
11 |
+
# (NER) bert-base-cased : conll2012_ontonotesv5-english-v4
|
12 |
+
|
13 |
+
This `bert-base-cased` NER model was finetuned on `conll2012_ontonotesv5` version `english-v4` dataset. <br>
|
14 |
+
Check out [NER-System Repository](https://github.com/djagatiya/NER-System) for more information.
|
15 |
+
|
16 |
+
## Evaluation
|
17 |
+
- Precision: 87.85
|
18 |
+
- Recall: 89.63
|
19 |
+
- F1-Score: 88.73
|
20 |
+
|
21 |
+
> check out this [eval.log](eval.log) file for evaluation metrics and classification report.
|
22 |
+
|
23 |
+
```
|
24 |
+
precision recall f1-score support
|
25 |
+
|
26 |
+
CARDINAL 0.86 0.87 0.86 935
|
27 |
+
DATE 0.84 0.88 0.86 1602
|
28 |
+
EVENT 0.65 0.67 0.66 63
|
29 |
+
FAC 0.69 0.71 0.70 135
|
30 |
+
GPE 0.97 0.93 0.95 2240
|
31 |
+
LANGUAGE 0.76 0.73 0.74 22
|
32 |
+
LAW 0.54 0.55 0.54 40
|
33 |
+
LOC 0.73 0.80 0.76 179
|
34 |
+
MONEY 0.87 0.90 0.88 314
|
35 |
+
NORP 0.93 0.96 0.94 841
|
36 |
+
ORDINAL 0.80 0.87 0.83 195
|
37 |
+
ORG 0.88 0.90 0.89 1795
|
38 |
+
PERCENT 0.88 0.90 0.89 349
|
39 |
+
PERSON 0.94 0.95 0.94 1988
|
40 |
+
PRODUCT 0.62 0.76 0.69 76
|
41 |
+
QUANTITY 0.74 0.81 0.77 105
|
42 |
+
TIME 0.61 0.67 0.64 212
|
43 |
+
WORK_OF_ART 0.56 0.66 0.61 166
|
44 |
+
|
45 |
+
micro avg 0.88 0.90 0.89 11257
|
46 |
+
macro avg 0.77 0.81 0.79 11257
|
47 |
+
weighted avg 0.88 0.90 0.89 11257
|
48 |
+
```
|