Update README.md
Browse files
README.md
CHANGED
@@ -15,13 +15,13 @@ Model was evaluated on the test dataset of Conll2002.
|
|
15 |
|
16 |
## Training data
|
17 |
Training data was classified as follow:
|
18 |
-
Abbreviation|Description
|
19 |
-
|
20 |
-
O
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
|
26 |
Alongside the IOB formatting, this is:
|
27 |
- B-LABEL if the word is at the beggining of the entity.
|
@@ -54,18 +54,18 @@ nlp('Ignacio se fue de viaje por Buenos aires')
|
|
54 |
## Model Performance
|
55 |
Overall
|
56 |
| precision | recall | f1-score |
|
57 |
-
|
58 |
| 0.9833 | 0.8950 | 0.8998 |
|
59 |
|
60 |
By classes
|
61 |
-
| class | precision
|
62 |
-
|
63 |
-
| O | 0.9958
|
64 |
-
| B-PER | 0.9572
|
65 |
-
| I-PER | 0.9487
|
66 |
-
| B-ORG | 0.8823
|
67 |
-
| I-ORG | 0.9253
|
68 |
-
| B-LOC | 0.8967
|
69 |
-
| I-LOC | 0.8870
|
70 |
-
| B-MISC | 0.7541
|
71 |
-
| I-MISC | 0.9026
|
|
|
15 |
|
16 |
## Training data
|
17 |
Training data was classified as follow:
|
18 |
+
|Abbreviation| Description |
|
19 |
+
|:----------:|:-------------:|
|
20 |
+
| O | Outside of NE |
|
21 |
+
| PER | Person’s name |
|
22 |
+
| ORG | Organization |
|
23 |
+
| LOC | Location |
|
24 |
+
| MISC | Miscellaneous |
|
25 |
|
26 |
Alongside the IOB formatting, this is:
|
27 |
- B-LABEL if the word is at the beggining of the entity.
|
|
|
54 |
## Model Performance
|
55 |
Overall
|
56 |
| precision | recall | f1-score |
|
57 |
+
|:---------:|:------:|:--------:|
|
58 |
| 0.9833 | 0.8950 | 0.8998 |
|
59 |
|
60 |
By classes
|
61 |
+
| class | precision | recall | f1-score |
|
62 |
+
|:------:|:---------:|:------:|:--------:|
|
63 |
+
| O | 0.9958 | 0.9965 | 0.990 |
|
64 |
+
| B-PER | 0.9572 | 0.9741 | 0.9654 |
|
65 |
+
| I-PER | 0.9487 | 0.9921 | 0.9699 |
|
66 |
+
| B-ORG | 0.8823 | 0.9264 | 0.9038 |
|
67 |
+
| I-ORG | 0.9253 | 0.9264 | 0.9117 |
|
68 |
+
| B-LOC | 0.8967 | 0.8736 | 0.8850 |
|
69 |
+
| I-LOC | 0.8870 | 0.8215 | 0.8530 |
|
70 |
+
| B-MISC | 0.7541 | 0.7964 | 0.7747 |
|
71 |
+
| I-MISC | 0.9026 | 0.7827 | 0.8384 |
|