UGARIT commited on
Commit
dc96adf
·
1 Parent(s): 5447eb6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -11,7 +11,31 @@ widget:
11
 
12
  Pretrained NER tagging model for ancient Greek
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  # Usage
 
15
  ```python
16
  from flair.data import Sentence
17
  from flair.models import SequenceTagger
 
11
 
12
  Pretrained NER tagging model for ancient Greek
13
 
14
+ # Scores & Tagset
15
+ <details>
16
+
17
+ Training:
18
+ | | Precision | Recall | F1-score | Support|
19
+ |------|:---------:|:--------:|:--------:|:--------:|
20
+ |PER | 0.9124 | 0.9445 | 0.9282 | 2127|
21
+ |MISC | 0.8092 | 0.8317 | 0.8203 | 933|
22
+ |LOC | 0.8686 | 0.7835 | 0.8238 | 388|
23
+
24
+ Evaluation
25
+ | | Precision | Recall | F1-score |Support|
26
+ |------|:---------:|:--------:|:--------:|:--------:|
27
+ | PER | 92.00% | 86.79% | 89.32% | 124|
28
+ | MISC | 96.43% | 87.10% | 91.53% | 159|
29
+ | LOC | 80.00% | 84.85% | 82.35% | 66|
30
+
31
+ </details>
32
+
33
+ - F-score (micro) 0.8878
34
+ - F-score (macro) 0.8574
35
+ - Accuracy 0.8324
36
+
37
  # Usage
38
+
39
  ```python
40
  from flair.data import Sentence
41
  from flair.models import SequenceTagger