NazaGara commited on
Commit
b731d78
1 Parent(s): 0008a4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -19
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 |Outside of a named entity
21
- MISC |Miscellaneous entity
22
- PER |Person’s name
23
- ORG |Organization
24
- LOC |Location
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\| | recall | f1-score |
62
- |--------|-------------|--------|----------|
63
- | O | 0.9958 | 0.9965 | 0.99 |
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 |
 
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 |