Update README.md
Browse files
README.md
CHANGED
@@ -40,51 +40,71 @@ How to use DistilCamemBERT-NER
|
|
40 |
from transformers import pipeline
|
41 |
|
42 |
ner = pipeline('ner', model="cmarkea/distilcamembert-base-ner", tokenizer="cmarkea/distilcamembert-base-ner", aggregation_strategy="simple")
|
43 |
-
result = ner(
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
```
|
|
|
40 |
from transformers import pipeline
|
41 |
|
42 |
ner = pipeline('ner', model="cmarkea/distilcamembert-base-ner", tokenizer="cmarkea/distilcamembert-base-ner", aggregation_strategy="simple")
|
43 |
+
result = ner(
|
44 |
+
"Le Crédit Mutuel Arkéa est une banque Française, "
|
45 |
+
"elle comprend le CMB qui est une banque située en "
|
46 |
+
"Bretagne et le CMSO qui est une banque qui se situe "
|
47 |
+
"principalement en Aquitaine. C'est sous la présidence "
|
48 |
+
"de Louis Lichou, dans les années 1980 que différentes "
|
49 |
+
"filiales sont créées au sein du CMB et forment les "
|
50 |
+
"principales filiales du groupe qui existent encore "
|
51 |
+
"aujourd'hui (Federal Finance, Suravenir, Financo, etc.)."
|
52 |
+
)
|
53 |
+
|
54 |
+
result
|
55 |
+
[{'entity_group': 'ORG',
|
56 |
+
'score': 0.99327177,
|
57 |
+
'word': 'Crédit Mutuel Arkéa',
|
58 |
+
'start': 3,
|
59 |
+
'end': 22},
|
60 |
+
{'entity_group': 'LOC',
|
61 |
+
'score': 0.5869117,
|
62 |
+
'word': 'Française',
|
63 |
+
'start': 38,
|
64 |
+
'end': 47},
|
65 |
+
{'entity_group': 'ORG',
|
66 |
+
'score': 0.9728106,
|
67 |
+
'word': 'CMB',
|
68 |
+
'start': 66,
|
69 |
+
'end': 69},
|
70 |
+
{'entity_group': 'LOC',
|
71 |
+
'score': 0.9974824,
|
72 |
+
'word': 'Bretagne',
|
73 |
+
'start': 99,
|
74 |
+
'end': 107},
|
75 |
+
{'entity_group': 'ORG',
|
76 |
+
'score': 0.956406,
|
77 |
+
'word': 'CMSO',
|
78 |
+
'start': 114,
|
79 |
+
'end': 118},
|
80 |
+
{'entity_group': 'LOC',
|
81 |
+
'score': 0.99741644,
|
82 |
+
'word': 'Aquitaine',
|
83 |
+
'start': 169,
|
84 |
+
'end': 178},
|
85 |
+
{'entity_group': 'PER',
|
86 |
+
'score': 0.9988959,
|
87 |
+
'word': 'Louis Lichou',
|
88 |
+
'start': 208,
|
89 |
+
'end': 220},
|
90 |
+
{'entity_group': 'ORG',
|
91 |
+
'score': 0.93090177,
|
92 |
+
'word': 'CMB',
|
93 |
+
'start': 291,
|
94 |
+
'end': 294},
|
95 |
+
{'entity_group': 'ORG',
|
96 |
+
'score': 0.9965743,
|
97 |
+
'word': 'Federal Finance',
|
98 |
+
'start': 374,
|
99 |
+
'end': 389},
|
100 |
+
{'entity_group': 'ORG',
|
101 |
+
'score': 0.99655724,
|
102 |
+
'word': 'Suravenir',
|
103 |
+
'start': 391,
|
104 |
+
'end': 400},
|
105 |
+
{'entity_group': 'ORG',
|
106 |
+
'score': 0.99653435,
|
107 |
+
'word': 'Financo',
|
108 |
+
'start': 402,
|
109 |
+
'end': 409}]
|
110 |
```
|