msislam commited on
Commit
3efb6ba
1 Parent(s): 1290240

Update readme

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -28,7 +28,7 @@ The training dataset is based on [The Multilingual Amazon Reviews Corpus](https:
28
  ## Results
29
 
30
  ```python
31
- {'DE': {'precision': 0.9870741390453328,
32
  'recall': 0.9883516686696866,
33
  'f1': 0.9877124907612713}
34
  'EN': {'precision': 0.9901617633147289,
@@ -44,11 +44,13 @@ The training dataset is based on [The Multilingual Amazon Reviews Corpus](https:
44
  'overall_precision': 0.9888723454274744
45
  'overall_recall': 0.9895702634880803
46
  'overall_f1': 0.9892211813585232
47
- 'overall_accuracy': 0.9993651810717168}
48
  ```
49
 
50
  ## Usage
51
 
 
 
52
  ```python
53
  from transformers import AutoTokenizer, AutoModelForTokenClassification
54
 
 
28
  ## Results
29
 
30
  ```python
31
+ 'DE': {'precision': 0.9870741390453328,
32
  'recall': 0.9883516686696866,
33
  'f1': 0.9877124907612713}
34
  'EN': {'precision': 0.9901617633147289,
 
44
  'overall_precision': 0.9888723454274744
45
  'overall_recall': 0.9895702634880803
46
  'overall_f1': 0.9892211813585232
47
+ 'overall_accuracy': 0.9993651810717168
48
  ```
49
 
50
  ## Usage
51
 
52
+ The model can be used as follows:
53
+
54
  ```python
55
  from transformers import AutoTokenizer, AutoModelForTokenClassification
56