sergejcodes commited on
Commit
1c6ea19
1 Parent(s): 489ac4c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -62,7 +62,11 @@ More information needed
62
 
63
  ## Training and evaluation data
64
 
65
- More information needed
 
 
 
 
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