Jean-Baptiste
commited on
Commit
·
bcb19a1
1
Parent(s):
a7d6832
Update README.md
Browse files
README.md
CHANGED
@@ -77,26 +77,28 @@ nlp("Apple est créée le 1er avril 1976 dans le garage de la maison d'enfance d
|
|
77 |
```
|
78 |
|
79 |
|
80 |
-
## Model performances
|
81 |
|
82 |
Global
|
83 |
```
|
84 |
-
'precision': 0.
|
85 |
-
'recall': 0.
|
86 |
-
'f1': 0.
|
87 |
```
|
88 |
|
89 |
By entity
|
90 |
```
|
91 |
-
'PER': {'precision': 0.9367143476376246,
|
92 |
-
'recall': 0.9583148558758315,
|
93 |
-
'f1': 0.9473914949583516,
|
94 |
-
'number': 2255},
|
95 |
-
'MISC': {'precision': 0.831053901850362,
|
96 |
-
'recall': 0.815955766192733,
|
97 |
-
'f1': 0.823435631725787},
|
98 |
'LOC': {'precision': 0.8701754385964913,
|
99 |
'recall': 0.8878281622911695,
|
100 |
-
'f1': 0.8789131718842291}
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
|
|
77 |
```
|
78 |
|
79 |
|
80 |
+
## Model performances (metric: seqeval)
|
81 |
|
82 |
Global
|
83 |
```
|
84 |
+
'precision': 0.8830965723967158
|
85 |
+
'recall': 0.8915789473684211
|
86 |
+
'f1': 0.8873174883781837
|
87 |
```
|
88 |
|
89 |
By entity
|
90 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
'LOC': {'precision': 0.8701754385964913,
|
92 |
'recall': 0.8878281622911695,
|
93 |
+
'f1': 0.8789131718842291},
|
94 |
+
'MISC': {'precision': 0.831053901850362,
|
95 |
+
'recall': 0.815955766192733,
|
96 |
+
'f1': 0.823435631725787},
|
97 |
+
'ORG': {'precision': 0.8620199146514936,
|
98 |
+
'recall': 0.8335625859697386,
|
99 |
+
'f1': 0.8475524475524475},
|
100 |
+
'PER': {'precision': 0.9367143476376246,
|
101 |
+
'recall': 0.9583148558758315,
|
102 |
+
'f1': 0.947391494958}
|
103 |
+
```
|
104 |
|