sergejcodes commited on
Commit
a88b6e7
1 Parent(s): f192873

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -2
README.md CHANGED
@@ -34,6 +34,8 @@ model-index:
34
  - name: Accuracy
35
  type: accuracy
36
  value: 0.9786213727432309
 
 
37
  ---
38
 
39
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -59,7 +61,11 @@ More information needed
59
 
60
  ## Training and evaluation data
61
 
62
- More information needed
 
 
 
 
63
 
64
  ## Training procedure
65
 
@@ -92,4 +98,4 @@ The following hyperparameters were used during training:
92
  - Transformers 4.27.4
93
  - Pytorch 1.13.1+cu116
94
  - Datasets 2.11.0
95
- - Tokenizers 0.13.2
 
34
  - name: Accuracy
35
  type: accuracy
36
  value: 0.9786213727432309
37
+ language:
38
+ - de
39
  ---
40
 
41
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
61
 
62
  ## Training and evaluation data
63
 
64
+ 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:
65
+
66
+ ```python
67
+ {'O': 0, 'B-PER': 1, 'I-PER': 2, 'B-ORG': 3, 'I-ORG': 4, 'B-LOC': 5, 'I-LOC': 6,}
68
+ ```
69
 
70
  ## Training procedure
71
 
 
98
  - Transformers 4.27.4
99
  - Pytorch 1.13.1+cu116
100
  - Datasets 2.11.0
101
+ - Tokenizers 0.13.2