Jean-Baptiste
commited on
Commit
·
3f61b30
1
Parent(s):
cfd7e7b
Update README.md
Browse files
README.md
CHANGED
@@ -8,7 +8,8 @@ widget:
|
|
8 |
|
9 |
## Introduction
|
10 |
|
11 |
-
[camembert-ner] is a NER model that was fine-tuned from camemBERT on wikiner-fr dataset
|
|
|
12 |
|
13 |
|
14 |
## How to use camembert-ner with HuggingFace
|
@@ -74,7 +75,26 @@ nlp("Apple est créée le 1er avril 1976 dans le garage de la maison d'enfance d
|
|
74 |
```
|
75 |
|
76 |
|
77 |
-
##
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
|
|
8 |
|
9 |
## Introduction
|
10 |
|
11 |
+
[camembert-ner] is a NER model that was fine-tuned from camemBERT on wikiner-fr dataset.
|
12 |
+
Model was trained on subset of wikiner-fr dataset (~36 000 sentences)
|
13 |
|
14 |
|
15 |
## How to use camembert-ner with HuggingFace
|
|
|
75 |
```
|
76 |
|
77 |
|
78 |
+
## Model performances
|
79 |
|
80 |
+
Global
|
81 |
+
```
|
82 |
+
'precision': 0.8852223816355811
|
83 |
+
'recall': 0.8977156991124691
|
84 |
+
'f1': 0.8914252690890703
|
85 |
+
```
|
86 |
|
87 |
+
By entity
|
88 |
+
```
|
89 |
+
'PER': {'precision': 0.9367143476376246,
|
90 |
+
'recall': 0.9583148558758315,
|
91 |
+
'f1': 0.9473914949583516,
|
92 |
+
'number': 2255},
|
93 |
+
'MISC': {'precision': 0.831053901850362,
|
94 |
+
'recall': 0.815955766192733,
|
95 |
+
'f1': 0.823435631725787},
|
96 |
+
'LOC': {'precision': 0.8701754385964913,
|
97 |
+
'recall': 0.8878281622911695,
|
98 |
+
'f1': 0.8789131718842291}
|
99 |
+
```
|
100 |
|