sergejcodes
commited on
Commit
•
4b195a0
1
Parent(s):
c68ae59
Update README.md
Browse files
README.md
CHANGED
@@ -62,7 +62,11 @@ More information needed
|
|
62 |
|
63 |
## Training and evaluation data
|
64 |
|
65 |
-
|
|
|
|
|
|
|
|
|
66 |
|
67 |
## Training procedure
|
68 |
|
|
|
62 |
|
63 |
## Training and evaluation data
|
64 |
|
65 |
+
The model was trained on data that follows the [`IOB`](<https://en.wikipedia.org/wiki/Inside%E2%80%93outside%E2%80%93beginning_(tagging)>) convention. Full tagset with indices:
|
66 |
+
|
67 |
+
```python
|
68 |
+
{'O': 0, 'B-PER': 1, 'I-PER': 2, 'B-ORG': 3, 'I-ORG': 4, 'B-LOC': 5, 'I-LOC': 6, 'B-MISC': 7, 'I-MISC': 8}
|
69 |
+
```
|
70 |
|
71 |
## Training procedure
|
72 |
|